Include inttypes.h instead of stdint.h if appropriate.
authorPatrick Lam <plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000 (18:35 +0000)
committerPatrick Lam <plam@MIT.EDU>
Fri, 3 Mar 2006 18:35:42 +0000 (18:35 +0000)
ChangeLog
src/fcint.h

index e4f4d8d..0678fe6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
 2006-03-03  Patrick Lam  <plam@mit.edu>
+       * src/fcint.h:
+
+       Include inttypes.h instead of stdint.h if appropriate.
+
+2006-03-03  Patrick Lam  <plam@mit.edu>
        * fc-cat/fc-cat.c (FcFileIsDir):
        * fc-glyphname/fc-flyphname.c:
 
index d5ff9d5..3f7f15b 100644 (file)
 
 #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>