* include/_mingw.h (__MINGW_ATTRIBUTE_NONNULL): Fix typo

in GNUC version guard.
This commit is contained in:
Danny Smith 2005-06-06 08:21:53 +00:00
parent 6eb501439a
commit c94aabb8c6
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-06-06 Danny Smith <dannysmith@users.sourceforge
* include/_mingw.h (__MINGW_ATTRIBUTE_NONNULL): Fix typo
in GNUC version guard.
2005-05-20 Danny Smith <dannysmith@users.sourceforge 2005-05-20 Danny Smith <dannysmith@users.sourceforge
* crt1.c (_gnu_exception_handler): Handle illegal instruction * crt1.c (_gnu_exception_handler): Handle illegal instruction
@ -7,7 +12,7 @@
* mingwex/math/nexttoward.c: New file. * mingwex/math/nexttoward.c: New file.
* mingwex/math/nexttowardf.c: New file. * mingwex/math/nexttowardf.c: New file.
* mingwex/math/nextafterl.c: Add nexttowardl aliaa. * mingwex/math/nextafterl.c: Add nexttowardl alias.
* mingwex/Makefile.in (MATH_DISTFILES): Add nexttoward.c, * mingwex/Makefile.in (MATH_DISTFILES): Add nexttoward.c,
mexttowardf.c, mexttowardf.c,
(MATH_OBJS): Add nexttoward.o, mexttowardf.o, (MATH_OBJS): Add nexttoward.o, mexttowardf.o,

View File

@ -137,9 +137,9 @@
#endif #endif
/* Attribute `nonnull' was valid as of gcc 3.3. We don't use GCC's /* Attribute `nonnull' was valid as of gcc 3.3. We don't use GCC's
variadiac macro facility, because variadic macros causes syntax variadiac macro facility, because variadic macros cause syntax
errors with --traditional-cpp. */ errors with --traditional-cpp. */
#if (__GNUC__ > 3 ||( __GNUC__ == 3 && __GNUC_MINOR >= 3)) #if (__GNUC__ > 3 ||( __GNUC__ == 3 && __GNUC_MINOR__ >= 3))
#define __MINGW_ATTRIB_NONNULL(arg) __attribute__ ((__nonnull__ (arg))) #define __MINGW_ATTRIB_NONNULL(arg) __attribute__ ((__nonnull__ (arg)))
#else #else
#define __MINGW_ATTRIB_NONNULL(arg) #define __MINGW_ATTRIB_NONNULL(arg)