Skip to content

Commit

Permalink
update headers base on PHP 8.3 dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Feb 23, 2023
1 parent 52d3cee commit 158194f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions headers/ze83.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ typedef enum
FAILURE = -1,
} ZEND_RESULT_CODE;

typedef unsigned long uintptr_t;
typedef unsigned long int uintptr_t;
typedef struct
{
void *ptr;
Expand All @@ -19,8 +19,6 @@ typedef struct
} zend_type;

typedef ZEND_RESULT_CODE zend_result;
typedef intptr_t zend_intptr_t;
typedef uintptr_t zend_uintptr_t;
typedef unsigned char zend_uchar;
typedef int64_t zend_long;
typedef uint64_t zend_ulong;
Expand Down Expand Up @@ -403,7 +401,7 @@ typedef struct _zend_internal_function

typedef struct _zend_internal_function_info
{
zend_uintptr_t required_num_args;
uintptr_t required_num_args;
zend_type type;
const char *default_value;
} zend_internal_function_info;
Expand Down
6 changes: 2 additions & 4 deletions headers/ze83ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ typedef enum
FAILURE = -1,
} ZEND_RESULT_CODE;

typedef unsigned long uintptr_t;
typedef unsigned long int uintptr_t;
typedef struct
{
void *ptr;
Expand All @@ -19,8 +19,6 @@ typedef struct
} zend_type;

typedef ZEND_RESULT_CODE zend_result;
typedef intptr_t zend_intptr_t;
typedef uintptr_t zend_uintptr_t;
typedef unsigned char zend_uchar;
typedef int64_t zend_long;
typedef uint64_t zend_ulong;
Expand Down Expand Up @@ -403,7 +401,7 @@ typedef struct _zend_internal_function

typedef struct _zend_internal_function_info
{
zend_uintptr_t required_num_args;
uintptr_t required_num_args;
zend_type type;
const char *default_value;
} zend_internal_function_info;
Expand Down
3 changes: 1 addition & 2 deletions headers/zeWin83.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ typedef struct

typedef ZEND_RESULT_CODE zend_result;
typedef intptr_t zend_intptr_t;
typedef uintptr_t zend_uintptr_t;
typedef unsigned char zend_uchar;
typedef int64_t zend_long;
typedef uint64_t zend_ulong;
Expand Down Expand Up @@ -417,7 +416,7 @@ typedef struct _zend_internal_function

typedef struct _zend_internal_function_info
{
zend_uintptr_t required_num_args;
uintptr_t required_num_args;
zend_type type;
const char *default_value;
} zend_internal_function_info;
Expand Down
3 changes: 1 addition & 2 deletions headers/zeWin83ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ typedef struct

typedef ZEND_RESULT_CODE zend_result;
typedef intptr_t zend_intptr_t;
typedef uintptr_t zend_uintptr_t;
typedef unsigned char zend_uchar;
typedef int64_t zend_long;
typedef uint64_t zend_ulong;
Expand Down Expand Up @@ -417,7 +416,7 @@ typedef struct _zend_internal_function

typedef struct _zend_internal_function_info
{
zend_uintptr_t required_num_args;
uintptr_t required_num_args;
zend_type type;
const char *default_value;
} zend_internal_function_info;
Expand Down

0 comments on commit 158194f

Please sign in to comment.