summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-09-05 11:38:01 +0000
committerSascha Schumann <sas@php.net>1999-09-05 11:38:01 +0000
commit5a2189f3d3f63ad63c529c51eeeab2be3d87754f (patch)
treef0bc43790e3a8c0ca8899bd43ca036797425f9e7
parent04b0bc4c700de3a1d61faa606f8c0cd9ede9e32d (diff)
downloadphp-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.h2
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