diff options
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 8f016ad3..c9d273ea 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -20,6 +20,8 @@ # endif #endif +#include <stdio.h> + /* constants designating the various supported protocols */ #define P_AUTO 1 #define P_POP2 2 @@ -659,7 +661,7 @@ void itimerthread(void*); # if HAVE_STRERROR # ifndef strerror /* On some systems, strerror is a macro */ -char *strerror (); +char *strerror (int); # endif # endif /* HAVE_STRERROR */ |