diff options
author | Kai Tietz <ktietz@gcc.gnu.org> | 2009-09-03 16:18:38 +0200 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2009-09-03 16:18:38 +0200 |
commit | be2c0fc9418411a898756e517fb6cfbffb3002eb (patch) | |
tree | 3bd6b1b1510659fd4f3f5c85a6cf9f9fe128f6d1 /gcc/system.h | |
parent | 8e094aa29dcc9d8058a3717617f3fab2ec833919 (diff) | |
download | gcc-be2c0fc9418411a898756e517fb6cfbffb3002eb.zip gcc-be2c0fc9418411a898756e517fb6cfbffb3002eb.tar.gz gcc-be2c0fc9418411a898756e517fb6cfbffb3002eb.tar.bz2 |
config.in (HAVE_STDINT_H): New.
2009-09-03 Kai Tietz <kai.tietz@onevision.com>
* config.in (HAVE_STDINT_H): New.
* configure.ac (GCC_HEADER_STDINT): Generated gstdint.h.
* configure: Regenerated.
* system.h (gstdint.h): Add include.
* Makefile.in (aclocal): Add config/stdint.m4.
* aclocal.m4: Regenerated.
From-SVN: r151379
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/system.h b/gcc/system.h index b74e0e5..5c26e62 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -414,6 +414,8 @@ extern void *calloc (size_t, size_t); extern void *realloc (void *, size_t); #endif +#include "gstdint.h" + /* If the system doesn't provide strsignal, we get it defined in libiberty but no declaration is supplied. */ #if !defined (HAVE_STRSIGNAL) \ |