mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
Use standard boolean type as zend_bool typedef
Closes GH-5624
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user