From 220e41a42148ad2b652ffaad6b02e965603975b4 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 7 Nov 2003 09:26:18 +0000 Subject: [PATCH] Move typedef to where it is needed now. --- ext/standard/basic_functions.h | 8 ++------ ext/standard/php_filestat.h | 6 ++++++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 60a2249739..6ef8b91be9 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -28,6 +28,8 @@ #include #endif +#include "php_filestat.h" + #include "zend_highlight.h" #include "url_scanner.h" @@ -120,12 +122,6 @@ PHP_FUNCTION(stream_bucket_new); PHP_MINIT_FUNCTION(user_filters); PHP_RSHUTDOWN_FUNCTION(user_filters); -#ifdef PHP_WIN32 -typedef unsigned int php_stat_len; -#else -typedef int php_stat_len; -#endif - PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers TSRMLS_DC); #if SIZEOF_INT == 4 diff --git a/ext/standard/php_filestat.h b/ext/standard/php_filestat.h index 4e485b24bd..4e7e3a6bb2 100644 --- a/ext/standard/php_filestat.h +++ b/ext/standard/php_filestat.h @@ -75,6 +75,12 @@ PHP_FUNCTION(clearstatcache); #define getuid() 1 #endif +#ifdef PHP_WIN32 +typedef unsigned int php_stat_len; +#else +typedef int php_stat_len; +#endif + PHPAPI void php_stat(const char *filename, php_stat_len filename_length, int type, pval *return_value TSRMLS_DC); /* Switches for various filestat functions: */ -- 2.40.0