]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/_mingw.h (__MINGW_ATTRIBUTE_NONNULL): Fix typo
authorDanny Smith <dannysmith@users.sourceforge.net>
Mon, 6 Jun 2005 08:21:53 +0000 (08:21 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Mon, 6 Jun 2005 08:21:53 +0000 (08:21 +0000)
in GNUC version guard.

winsup/mingw/ChangeLog
winsup/mingw/include/_mingw.h

index 5c74d22c6beb36537f5b703c62bd54b57d0b0fc0..01793dfee18be8056123cf0fa1a993d9fbf89429 100644 (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
 
        * crt1.c (_gnu_exception_handler): Handle illegal instruction
@@ -7,7 +12,7 @@
 
        * mingwex/math/nexttoward.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,
        mexttowardf.c,
        (MATH_OBJS):  Add nexttoward.o, mexttowardf.o,
index 32356f30b111472c63f086a38ca095ae169238ec..4b3b42d6cf2fcb4b440d8961f2165358c2b0f862 100644 (file)
 #endif
 
 /* 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.  */
-#if (__GNUC__ > 3 ||( __GNUC__ == 3 &&  __GNUC_MINOR >= 3))
+#if (__GNUC__ > 3 ||( __GNUC__ == 3 &&  __GNUC_MINOR__ >= 3))
 #define __MINGW_ATTRIB_NONNULL(arg) __attribute__ ((__nonnull__ (arg)))
 #else
 #define __MINGW_ATTRIB_NONNULL(arg)
This page took 0.036495 seconds and 5 git commands to generate.