From 49feb9131a102c601948997632c1f2f18214c067 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Sat, 6 Oct 2012 12:29:02 +0200 Subject: [PATCH] include arpa/inet.h to get byte order conv --- aucat/aucat.c | 1 + aucat/dev.c | 1 + aucat/sock.c | 1 + 3 files changed, 3 insertions(+) diff --git a/aucat/aucat.c b/aucat/aucat.c index 0df6f39..e197c0d 100644 --- a/aucat/aucat.c +++ b/aucat/aucat.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include diff --git a/aucat/dev.c b/aucat/dev.c index 342e9d0..aad6d9d 100644 --- a/aucat/dev.c +++ b/aucat/dev.c @@ -79,6 +79,7 @@ #ifdef DEBUG #include "dbg.h" #endif +#include "bsd-compat.h" int dev_open(struct dev *); void dev_close(struct dev *); diff --git a/aucat/sock.c b/aucat/sock.c index 179ebdb..587c165 100644 --- a/aucat/sock.c +++ b/aucat/sock.c @@ -17,6 +17,7 @@ #include #include +#include #include #include #include