diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-20 19:07:02 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-20 19:07:02 (GMT) |
commit | c3a5319a09680eb71fd07829a8f82db1bd79af2d (patch) | |
tree | 41c359a637939d983f0169c44a2c7f4b608a3eda /Utilities/cmcurl | |
parent | b0c38460bd18225457e815b748e228621a58ae46 (diff) | |
download | CMake-c3a5319a09680eb71fd07829a8f82db1bd79af2d.zip CMake-c3a5319a09680eb71fd07829a8f82db1bd79af2d.tar.gz CMake-c3a5319a09680eb71fd07829a8f82db1bd79af2d.tar.bz2 |
COMP: Fix build on uclibc
Diffstat (limited to 'Utilities/cmcurl')
-rw-r--r-- | Utilities/cmcurl/mprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmcurl/mprintf.c b/Utilities/cmcurl/mprintf.c index d620fcd..569207a 100644 --- a/Utilities/cmcurl/mprintf.c +++ b/Utilities/cmcurl/mprintf.c @@ -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 |