fix a likely typo/transcription error in integer.h

This commit is contained in:
nhmall
2019-01-29 22:12:09 -05:00
parent c598da8de4
commit f2071a66f7

View File

@@ -7,7 +7,7 @@
#ifndef INTEGER_H
#define INTEGER_H
#if defined(__STDC__) && __STDC_VERSION__ >= 199101L
#if (defined(__STDC__) && __STDC_VERSION__ >= 199901L)
/* The compiler claims to conform to C99. Use stdint.h */
#include <stdint.h>
#define SKIP_STDINT_WORKAROUND