From 5d4cd1a71ab3dd3ff350230de255c603c7c0f17d Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 11 Oct 2005 11:39:01 +0000 Subject: [PATCH] Fixed compilation on Windows --- Zend/zend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend.h b/Zend/zend.h index 53e3d05705d..58311ad07a1 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -544,7 +544,7 @@ extern ZEND_API void (*zend_ticks_function)(int ticks); extern ZEND_API void (*zend_error_cb)(int type, const char *error_filename, const uint error_lineno, const char *format, va_list args); extern void (*zend_on_timeout)(int seconds TSRMLS_DC); extern ZEND_API int (*zend_stream_open_function)(const char *filename, zend_file_handle *handle TSRMLS_DC); -extern int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap); +extern ZEND_API int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap); extern ZEND_API char *(*zend_getenv)(char *name, size_t name_len TSRMLS_DC);