tcp.h: fix definition of tcp_init_isn()

Inline functions declared in header files need to be declared
static. Fixes a compiler warning with XCC compiler.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
diff --git a/subsys/net/ip/tcp.h b/subsys/net/ip/tcp.h
index 6b6c3e1..b523537 100644
--- a/subsys/net/ip/tcp.h
+++ b/subsys/net/ip/tcp.h
@@ -209,7 +209,7 @@
  *
  * @return Return a random TCP sequence number
  */
-inline u32_t tcp_init_isn(void)
+static inline u32_t tcp_init_isn(void)
 {
 	/* Randomise initial seq number */
 	return sys_rand32_get();