1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 11:02:55 +02:00

Remove __GNUC__ guard around stddef.h include

HAVE_STDDEF_H guards have been removed by
6c1ff61a36, because the header is
always available in C89. This removes a __GNUC__ guard for the
same header.
This commit is contained in:
Nikita Popov
2018-09-17 11:54:22 +02:00
parent 321c0cc349
commit f57be4bdbe

View File

@@ -24,10 +24,7 @@
#include <errno.h>
#include <math.h>
#include <assert.h>
#ifdef __GNUC__
#include <stddef.h>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>