diff options
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 174c64c6ea..17597c34c6 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -115,10 +115,10 @@ typedef int php_stat_len; #if SIZEOF_INT == 4 /* Most 32-bit and 64-bit systems have 32-bit ints */ -typedef unsigned int uint32; +typedef unsigned int php_uint32; #elif SIZEOF_LONG == 4 /* 16-bit systems? */ -typedef unsigned long uint32; +typedef unsigned long php_uint32; #else #error Need type which holds 32 bits #endif @@ -148,8 +148,8 @@ typedef struct { struct stat lsb; /* rand.c */ - uint32 state[MT_N+1]; /* state vector + 1 extra to not violate ANSI C */ - uint32 *next; /* next random value is computed from here */ + php_uint32 state[MT_N+1]; /* state vector + 1 extra to not violate ANSI C */ + php_uint32 *next; /* next random value is computed from here */ int left; /* can *next++ this many times before reloading */ } php_basic_globals; |