]> Pileus Git - ~andy/fetchmail/commitdiff
Fix various compiler warnings.
authorMatthias Andree <matthias.andree@gmx.de>
Fri, 18 Jun 2004 19:52:04 +0000 (19:52 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Fri, 18 Jun 2004 19:52:04 +0000 (19:52 -0000)
svn path=/trunk/; revision=3900

fetchmail.h
md5.h

index 8f016ad3ac66438fa58765b321a7c46ba7e529a4..c9d273ea8e3d927e03e55a82f81ae68a1b0a9ed6 100644 (file)
@@ -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 */
 
diff --git a/md5.h b/md5.h
index 715f3200edf29ce3dc8dac35fb5e8c4801fae32c..146ff59d3724888c0743b817d97dc5d5824a6750 100644 (file)
--- a/md5.h
+++ b/md5.h
@@ -23,6 +23,8 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf,
 void MD5Final(unsigned char digest[16], struct MD5Context *context);
 void MD5Transform(uint32 buf[4], uint32 const in[16]);
 
+char *MD5Digest (unsigned char *s);
+
 /*
  * This is needed to make RSAREF happy on some MS-DOS compilers.
  */