Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Revision:
61:aad055f1b0d1
Parent:
57:e0fb648acf48
Child:
71:736a5747ade1
--- a/tcp/tcb.h	Sat Dec 16 14:39:50 2017 +0000
+++ b/tcp/tcb.h	Thu Jan 11 17:38:21 2018 +0000
@@ -1,3 +1,6 @@
+#include <stdint.h>
+#include <stdbool.h>
+
 #define TCB_EMPTY        0
 #define TCB_SYN_RECEIVED 1
 #define TCB_ESTABLISHED  2
@@ -19,8 +22,8 @@
 };
 
 extern uint32_t    TcbElapsed;
-extern uint32_t    TcbGetIsn();
+extern uint32_t    TcbGetIsn(void);
 extern struct tcb* TcbGetExisting(uint16_t port);
-extern struct tcb* TcbGetEmpty();
-extern void        TcbMain();
-extern void        TcbInit();
\ No newline at end of file
+extern struct tcb* TcbGetEmpty(void);
+extern void        TcbMain(void);
+extern void        TcbInit(void);
\ No newline at end of file