diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-27 16:59:47 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-27 16:59:47 +0000 |
commit | 0c41db052b4c3271315d5267f3cacbc737617758 (patch) | |
tree | d18f62b1dc7abb6abaf75e391c85363a36a850d5 /common/sock_any.c | |
parent | 4b0e5506db124d17521e20dc9664eca60c71ece9 (diff) |
- Fixed most warnings when compiled with -Wall
Diffstat (limited to 'common/sock_any.c')
-rw-r--r-- | common/sock_any.c | 7 |
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" |