COMP: Fix build on uclibc

This commit is contained in:
Andy Cedilnik 2005-12-20 14:07:02 -05:00
parent b0c38460bd
commit c3a5319a09
1 changed files with 1 additions and 1 deletions

View File

@ -1134,7 +1134,7 @@ int curl_msprintf(char *buffer, const char *format, ...)
return retcode;
}
#ifndef WIN32 /* not needed on win32 */
#if !defined( WIN32) || defined(__UCLIBC__) /* not needed on win32 */
extern int fputc(int, FILE *);
#endif