summaryrefslogtreecommitdiff
path: root/common/sock_any.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-08-27 17:00:07 +0000
committerStef Walter <stef@memberwebs.com>2004-08-27 17:00:07 +0000
commitce81aa857ac7df3c3a0544626ad601710e555a90 (patch)
treebb63eda45c5ac02b4cd930063369d50cf0772704 /common/sock_any.c
parent100f692245931aee67d07905104188ef9465b334 (diff)
- Fixed most warnings when compiled with -Wall
Diffstat (limited to 'common/sock_any.c')
-rw-r--r--common/sock_any.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/sock_any.c b/common/sock_any.c
index 0018318..03621ff 100644
--- a/common/sock_any.c
+++ b/common/sock_any.c
@@ -36,12 +36,15 @@
*
*/
-#include <stdlib.h>
-#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
+
+#include <ctype.h>
+#include <stdlib.h>
+#include <errno.h>
#include <netdb.h>
#include <string.h>
+#include <stdio.h>
#include "sock_any.h"