* include/_mingw.h (__CRT_INLINE): Make conditional on __GNUC_STDC_INLINE__
This commit is contained in:
Danny Smith
2007-03-22 09:43:48 +00:00
parent 3ce0c60b4c
commit 3246efd513
2 changed files with 6 additions and 2 deletions

View File

@@ -116,7 +116,7 @@
#ifdef __cplusplus
# define __CRT_INLINE inline
#else
# if ( __MINGW_GNUC_PREREQ(4, 2) && __STDC_VERSION__ >= 199901L)
# if __GNUC_STDC_INLINE__
# define __CRT_INLINE extern inline __attribute__((__gnu_inline__))
# else
# define __CRT_INLINE extern __inline__