diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2004-12-14 20:17:58 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2004-12-14 20:17:58 +0000 |
commit | 358e08b95d57a1f688995b3b30a607645f01f80a (patch) | |
tree | 58c7996111d2de0560d5e98c7e14f50bdd85543a /lib/mprintf.c | |
parent | e181eda2534dee1f894a37b41b07b643df925396 (diff) | |
download | curl-358e08b95d57a1f688995b3b30a607645f01f80a.tar.gz |
Removed fputc() prototype since it's already in stdio.h
Diffstat (limited to 'lib/mprintf.c')
-rw-r--r-- | lib/mprintf.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/mprintf.c b/lib/mprintf.c index a9b601c9c..56bede316 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -1133,10 +1133,6 @@ int curl_msprintf(char *buffer, const char *format, ...) return retcode; } -#ifndef WIN32 /* not needed on win32 */ -extern int fputc(int, FILE *); -#endif - int curl_mprintf(const char *format, ...) { int retcode; |