소스 검색

in public headers, don't assume pre-C99 compilers have __inline keyword

Quentin Rameau 8 년 전
부모
커밋
bfcf5735d0
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      include/features.h

+ 2 - 0
include/features.h

@@ -24,6 +24,8 @@
 
 #if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
 #define __inline inline
+#elif !defined(__GNUC__)
+#define __inline
 #endif
 
 #if __STDC_VERSION__ >= 201112L