mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
Use standard boolean type as zend_bool typedef
Closes GH-5624
This commit is contained in:
parent
c14371ef7b
commit
4b77a158ef
@ -24,6 +24,7 @@
|
||||
|
||||
#include "zend_portability.h"
|
||||
#include "zend_long.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
#ifdef __SSE2__
|
||||
# include <mmintrin.h>
|
||||
@ -46,7 +47,7 @@
|
||||
# define ZEND_ENDIAN_LOHI_C_4(a, b, c, d) a, b, c, d
|
||||
#endif
|
||||
|
||||
typedef unsigned char zend_bool;
|
||||
typedef bool zend_bool;
|
||||
typedef unsigned char zend_uchar;
|
||||
|
||||
typedef enum {
|
||||
|
Loading…
Reference in New Issue
Block a user