diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-06-18 19:51:39 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-06-18 19:51:39 +0000 |
commit | 3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b (patch) | |
tree | e629f2ba436ab8a1062638eb1e3176696abfd1f6 /pop3.c | |
parent | 8f3f473c829e8691ef5566d73f3f130b492e36ba (diff) | |
download | fetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.tar.gz fetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.tar.bz2 fetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.zip |
Fix various compiler warnings.
svn path=/trunk/; revision=3899
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ #endif /* OPIE_ENABLE */ #ifndef strstr /* glibc-2.1 declares this as a macro */ -extern char *strstr(); /* needed on sysV68 R3V7.1. */ +extern char *strstr(const char *, const char *); /* needed on sysV68 R3V7.1. */ #endif /* strstr */ static int last; |