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.
This commit is contained in:
Andreas Jaeger 2000-12-15 14:16:56 +00:00
parent 940f075460
commit 8ab5926a26
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -101,7 +101,7 @@
# 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]. */