mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Add back typedefs for php_uint32 and php_int32
It's pretty likely that extensions rely on these, no need to break things.
This commit is contained in:
parent
7e0459e7ce
commit
fbe50b15dd
1 changed files with 4 additions and 0 deletions
|
@ -151,6 +151,10 @@ PHPAPI int php_prefix_varname(zval *result, zval *prefix, char *var_name, size_t
|
|||
|
||||
#define MT_N (624)
|
||||
|
||||
/* Deprecated type aliases -- use the standard types instead */
|
||||
typedef uint32_t php_uint32;
|
||||
typedef int32_t php_int32;
|
||||
|
||||
typedef struct _php_basic_globals {
|
||||
HashTable *user_shutdown_function_names;
|
||||
HashTable putenv_ht;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue