summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Lam <plam@MIT.EDU>2006-03-03 18:35:42 +0000
committerPatrick Lam <plam@MIT.EDU>2006-03-03 18:35:42 +0000
commitdc70c15aba6d14dbd5ce8bcd1bc36a39602fbc2c (patch)
tree1d580bb7e02602da8813270e84919c20d0a2d285 /src
parentead55be0eddcaa60ed3f7147091ada276e891ed9 (diff)
Include inttypes.h instead of stdint.h if appropriate.
Diffstat (limited to 'src')
-rw-r--r--src/fcint.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fcint.h b/src/fcint.h
index d5ff9d5..3f7f15b 100644
--- a/src/fcint.h
+++ b/src/fcint.h
@@ -27,7 +27,11 @@
#include <stdlib.h>
#include <stdio.h>
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#else
#include <stdint.h>
+#endif
#include <string.h>
#include <ctype.h>
#include <errno.h>