]> granicus.if.org Git - php/commitdiff
Remove __GNUC__ guard around stddef.h include
authorNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Sep 2018 09:54:22 +0000 (11:54 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Sep 2018 10:08:11 +0000 (12:08 +0200)
HAVE_STDDEF_H guards have been removed by
6c1ff61a368a26c8f2cbf383aa8a26fc30cf59ef, because the header is
always available in C89. This removes a __GNUC__ guard for the
same header.

Zend/zend_operators.h

index 5affc906aa67fadff863ea8f04bf4de4ccc297ca..b29a67ba594a51c54d29fb691cf75d2e34a55dae 100644 (file)
 #include <errno.h>
 #include <math.h>
 #include <assert.h>
-
-#ifdef __GNUC__
 #include <stddef.h>
-#endif
 
 #ifdef HAVE_IEEEFP_H
 #include <ieeefp.h>