diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-16 08:38:46 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-16 08:38:46 +0000 |
commit | 8be3e890f81388a70300cac1a8f4ad0f44a0149f (patch) | |
tree | abc68cb57e445709fe2547a2bd69b6ba79c305f4 /libiberty | |
parent | b324d3bd8603451e45d202bd2cba67092449891b (diff) | |
download | gcc-8be3e890f81388a70300cac1a8f4ad0f44a0149f.tar.gz |
* hashtab.c [HAVE_INTTYPES_H]: Include <inttypes.h>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151739 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/hashtab.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index c36413bbbfb..c86cbc6075a 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2009-09-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * hashtab.c [HAVE_INTTYPES_H]: Include <inttypes.h>. + 2009-09-15 Tristan Gingold <gingold@adacore.com> * config.h-vms (intptr_t): Define to compile hashtab.c diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 8c8bd3110ad..8c89bfcd839 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -50,6 +50,9 @@ Boston, MA 02110-1301, USA. */ #ifdef HAVE_LIMITS_H #include <limits.h> #endif +#ifdef HAVE_INTTYPES_H +#include <inttypes.h> +#endif #ifdef HAVE_STDINT_H #include <stdint.h> #endif |