diff options
author | Frank M. Kromann <fmk@php.net> | 2004-07-30 22:49:02 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2004-07-30 22:49:02 +0000 |
commit | 62cd02c5a7e0f677306f89c3cdb1048dc7cfe85c (patch) | |
tree | 3cf607af6bc81e76ddbbeb304c79b923122a43e2 | |
parent | d7c839d54f73c6649a13bc5f2178ec5a81ce930f (diff) | |
download | php-git-62cd02c5a7e0f677306f89c3cdb1048dc7cfe85c.tar.gz |
Adding missing PHPAPI for non ZTS builds
-rw-r--r-- | ext/standard/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h index e5c23e6a24..dfcf79561c 100644 --- a/ext/standard/file.h +++ b/ext/standard/file.h @@ -122,7 +122,7 @@ typedef struct { extern PHPAPI int file_globals_id; #else #define FG(v) (file_globals.v) -extern php_file_globals file_globals; +extern PHPAPI php_file_globals file_globals; #endif |