fix check for stdc version in include/integer.h

This commit is contained in:
Patric Mueller
2019-01-28 10:02:08 +01:00
parent 52d4b1a1aa
commit b3fde3eb41
+1 -1
View File
@@ -7,7 +7,7 @@
#ifndef INTEGER_H #ifndef INTEGER_H
#define INTEGER_H #define INTEGER_H
#if defined(__STDC__) && __STDC__ >= 199101L #if defined(__STDC__) && __STDC_VERSION__ >= 199101L
/* The compiler claims to conform to C99. Use stdint.h */ /* The compiler claims to conform to C99. Use stdint.h */
#include <stdint.h> #include <stdint.h>