diff options
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -37,6 +37,17 @@ #else #include <varargs.h> #endif +#if TIME_WITH_SYS_TIME +# include <sys/time.h> +# include <time.h> +#else +# if HAVE_SYS_TIME_H +# include <sys/time.h> +# else +# include <time.h> +# endif +#endif + #include "socket.h" #include "fetchmail.h" #include "i18n.h" |