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/snprintf.c | |
parent | 4916f5854063baed719b562f4e47ec5790d64f46 (diff) | |
download | php-git-816bcd3affd6838471982ef9d51a258d02226876.tar.gz |
Fix win32 build.
Diffstat (limited to 'main/snprintf.c')
-rw-r--r-- | main/snprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/snprintf.c b/main/snprintf.c index e0804b07d7..4cb9b5c91c 100644 --- a/main/snprintf.c +++ b/main/snprintf.c @@ -1135,7 +1135,7 @@ static void strx_printv(int *ccp, char *buf, size_t len, const char *format, } -int ap_php_snprintf(char *buf, size_t len, const char *format,...) +PHPAPI int ap_php_snprintf(char *buf, size_t len, const char *format,...) { int cc; va_list ap; @@ -1147,7 +1147,7 @@ int ap_php_snprintf(char *buf, size_t len, const char *format,...) } -int ap_php_vsnprintf(char *buf, size_t len, const char *format, va_list ap) +PHPAPI int ap_php_vsnprintf(char *buf, size_t len, const char *format, va_list ap) { int cc; |