summaryrefslogtreecommitdiffstats
path: root/ax25ipd/routing.c
diff options
context:
space:
mode:
Diffstat (limited to 'ax25ipd/routing.c')
-rw-r--r--ax25ipd/routing.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/ax25ipd/routing.c b/ax25ipd/routing.c
index 6fd5db4..6ac070a 100644
--- a/ax25ipd/routing.c
+++ b/ax25ipd/routing.c
@@ -6,12 +6,21 @@
*
*/
-#include <stdio.h>
-#include "ax25ipd.h"
-#include <sys/types.h>
-#include <netinet/in.h>
#include <memory.h>
+#include <stdio.h>
#include <syslog.h>
+#include <arpa/inet.h>
+#include <netinet/in.h>
+#include <sys/types.h>
+
+#include "ax25ipd.h"
+
+#ifndef FALSE
+#define FALSE 0
+#endif
+#ifndef TRUE
+#define TRUE 1
+#endif
/* The routing table structure is not visible outside this module. */