diff options
-rw-r--r-- | driver.c | 4 | ||||
-rw-r--r-- | socket.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -13,7 +13,10 @@ #include <config.h> #include <stdio.h> +#if defined(STDC_HEADERS) #include <stdlib.h> +#include <string.h> +#endif #if defined(HAVE_STDARG_H) #include <stdarg.h> #else @@ -21,7 +24,6 @@ #endif #include <sys/time.h> #include <signal.h> -#include <string.h> #ifdef KERBEROS_V4 #include <krb.h> @@ -22,6 +22,7 @@ #include <sys/ioctl.h> #if defined(STDC_HEADERS) #include <string.h> +#include <stdlib.h> #endif #if defined(HAVE_UNISTD_H) #include <unistd.h> @@ -31,7 +32,6 @@ #else #include <varargs.h> #endif -#include <stdlib.h> #include <errno.h> #include "socket.h" |