Update.
authorAndreas Jaeger <aj@suse.de>
Fri, 15 Dec 2000 14:16:56 +0000 (14:16 +0000)
committerAndreas Jaeger <aj@suse.de>
Fri, 15 Dec 2000 14:16:56 +0000 (14:16 +0000)
2000-12-15  Ben Collins  <bcollins@debian.org>

* misc/sys/cdefs.h: Fix thinko in checks for flexarr macros.
Patch by Akim Demaille <akim@epita.fr> in Debian bug report.

ChangeLog
misc/sys/cdefs.h

index b893e78..c06aeff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-15  Ben Collins  <bcollins@debian.org>
+
+       * misc/sys/cdefs.h: Fix thinko in checks for flexarr macros.
+       Patch by Akim Demaille <akim@epita.fr> in Debian bug report.
+
 2000-12-14  H.J. Lu  <hjl@gnu.org>
 
        * sysdeps/ieee754/flt-32/s_sincosf.c (__sincosf): The exponent
index 3d6a20b..f44440b 100644 (file)
 # ifdef __GNUC__
 #  define __flexarr    [0]
 # else
-#  ifdef __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
+#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
 #   define __flexarr   []
 #  else
 /* Some other non-C99 compiler.  Approximate with [1].  */