Include inttypes.h instead of stdint.h if appropriate.

This commit is contained in:
Patrick Lam 2006-03-03 18:35:42 +00:00
parent ead55be0ed
commit dc70c15aba
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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:

View File

@ -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>