diff options
author | Sascha Schumann <sas@php.net> | 1999-09-05 11:38:01 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-09-05 11:38:01 +0000 |
commit | 5a2189f3d3f63ad63c529c51eeeab2be3d87754f (patch) | |
tree | f0bc43790e3a8c0ca8899bd43ca036797425f9e7 | |
parent | 04b0bc4c700de3a1d61faa606f8c0cd9ede9e32d (diff) | |
download | php-git-5a2189f3d3f63ad63c529c51eeeab2be3d87754f.tar.gz |
work around gcc bug, otherwise compiler would die with
toplev.c:2261: Internal compiler error in function float_signal
in basic_functions.c
-rw-r--r-- | main/php_globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index 6e77339671..2ac448adeb 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -39,7 +39,7 @@ extern PHPAPI int core_globals_id; # define PLS_CC # define PG(v) (core_globals.v) # define PLS_FETCH() -extern ZEND_API php_core_globals core_globals; +extern ZEND_API struct _php_core_globals core_globals; #endif |