fix check for stdc version in include/integer.h

This commit is contained in:
Patric Mueller
2019-01-13 15:17:59 +01:00
parent 52d4b1a1aa
commit b3fde3eb41

View File

@@ -7,7 +7,7 @@
#ifndef 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 */
#include <stdint.h>