diff options
author | Frank M. Kromann <fmk@php.net> | 2004-11-15 21:04:09 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2004-11-15 21:04:09 +0000 |
commit | 816bcd3affd6838471982ef9d51a258d02226876 (patch) | |
tree | 048390ac566f7d9a943fcff78768baa00d81818d /main/php_sprintf.c | |
parent | 4916f5854063baed719b562f4e47ec5790d64f46 (diff) | |
download | php-git-816bcd3affd6838471982ef9d51a258d02226876.tar.gz |
Fix win32 build.
Diffstat (limited to 'main/php_sprintf.c')
-rw-r--r-- | main/php_sprintf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/main/php_sprintf.c b/main/php_sprintf.c index b0589c20a2..e18bd25c41 100644 --- a/main/php_sprintf.c +++ b/main/php_sprintf.c @@ -20,13 +20,16 @@ #include <stdio.h> #include <stdarg.h> -#ifdef NETWARE +#include "php.h" +#ifdef PHP_WIN32 +#include "config.w32.h" +#elif defined NETWARE #include "config.nw.h" #else #include "php_config.h" #endif -int +PHPAPI int php_sprintf (char*s, const char* format, ...) { va_list args; |