summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-08-22 19:43:04 +0000
committerSascha Schumann <sas@php.net>1999-08-22 19:43:04 +0000
commitd82728c4d062ece96244579a134dd241ed2ad339 (patch)
treebe0cef07a5ac94fa0f5e7d42f276f466aff91325
parentd13f6d754f3b5c33d414210229c8b5ed048bf82f (diff)
downloadphp-git-d82728c4d062ece96244579a134dd241ed2ad339.tar.gz
This changes makes it work on egcs 1.1.2/Alpha
-rw-r--r--Zend/zend.h2
-rw-r--r--Zend/zend_globals.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 220d0eb002..c4821c4402 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -49,7 +49,7 @@
#include "zend_errors.h"
#include "zend_alloc.h"
-typedef unsigned int zend_bool;
+typedef unsigned char zend_bool;
#undef SUCCESS
#undef FAILURE
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h
index c8bd32aa29..10d1861c9c 100644
--- a/Zend/zend_globals.h
+++ b/Zend/zend_globals.h
@@ -73,7 +73,7 @@ END_EXTERN_C()
# define CLS_CC
# define CG(v) (compiler_globals.v)
# define CLS_FETCH()
-extern ZEND_API zend_compiler_globals compiler_globals;
+extern ZEND_API struct _zend_compiler_globals compiler_globals;
int zendparse();
#endif