OSDN Git Service

* include/_mingw.h (CRT_INLINE): Correct typo.
authordannysmith <dannysmith>
Fri, 26 Jan 2007 00:20:14 +0000 (00:20 +0000)
committerdannysmith <dannysmith>
Fri, 26 Jan 2007 00:20:14 +0000 (00:20 +0000)
winsup/mingw/ChangeLog
winsup/mingw/include/_mingw.h

index 8487abb..46d26a5 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * include/_mingw.h (CRT_INLINE):  Correct typo.
+
 2007-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/io.h (X_OK):  Define to F_OK.
index 1102aff..5054d93 100644 (file)
 #ifdef __cplusplus
 # define __CRT_INLINE inline
 #else
-# if ( __MINGW_GNUC_PREREQ(4, 3)  &&  __STDC_VERSION__ >= 199901L)
-#  define __CRT_INLINE extern __attribute__((__gnu__inline__)) inline
+# if ( __MINGW_GNUC_PREREQ(4, 3)  && __STDC_VERSION__ >= 199901L)
+#  define __CRT_INLINE extern inline __attribute__((__gnu_inline__))
 # else
 #  define __CRT_INLINE extern __inline__
 # endif