Include inttypes.h instead of stdint.h if appropriate.
This commit is contained in:
parent
ead55be0ed
commit
dc70c15aba
|
@ -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:
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue