]> granicus.if.org Git - nethack/commitdiff
fix a likely typo/transcription error in integer.h
authornhmall <nhmall@nethack.org>
Wed, 30 Jan 2019 03:12:09 +0000 (22:12 -0500)
committernhmall <nhmall@nethack.org>
Wed, 30 Jan 2019 03:12:09 +0000 (22:12 -0500)
include/integer.h

index c6983e5449440a5fb9f2edc00b531a61480b014c..b420a708f7492dee9911378f6c3be3ad07961925 100644 (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