projects
/
nethack
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c598da8
)
fix a likely typo/transcription error in integer.h
author
nhmall
<nhmall@nethack.org>
Wed, 30 Jan 2019 03:12:09 +0000
(22:12 -0500)
committer
nhmall
<nhmall@nethack.org>
Wed, 30 Jan 2019 03:12:09 +0000
(22:12 -0500)
include/integer.h
patch
|
blob
|
history
diff --git
a/include/integer.h
b/include/integer.h
index c6983e5449440a5fb9f2edc00b531a61480b014c..b420a708f7492dee9911378f6c3be3ad07961925 100644
(file)
--- a/
include/integer.h
+++ b/
include/integer.h
@@
-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