We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5f5bff commit c062c18Copy full SHA for c062c18
NEWS
@@ -4,6 +4,7 @@ PHP NEWS
4
5
- Core:
6
. Added validation of class names in the autoload process. (Dmitry)
7
+ . Fixed invalid C code in zend_strtod.c. (Lior Kaplan)
8
. Fixed bug #61645 (fopen and O_NONBLOCK). (Mike)
9
10
- Date:
Zend/zend_strtod.c
@@ -267,8 +267,7 @@ BEGIN_EXTERN_C()
267
268
#if defined(IEEE_LITTLE_ENDIAN) + defined(IEEE_BIG_ENDIAN) + defined(VAX) + \
269
defined(IBM) != 1
270
- Exactly one of IEEE_LITTLE_ENDIAN IEEE_BIG_ENDIAN, VAX, or
271
- IBM should be defined.
+#error "Exactly one of IEEE_LITTLE_ENDIAN IEEE_BIG_ENDIAN, VAX, or IBM should be defined."
272
#endif
273
274
typedef union {
0 commit comments