mirror of git://gcc.gnu.org/git/gcc.git
* system.h [HAVE_INTTYPES_H]: Include inttypes.h.
From-SVN: r163569
This commit is contained in:
parent
9e3920e97f
commit
707bcb7ae4
|
@ -1,3 +1,7 @@
|
||||||
|
2010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* system.h [HAVE_INTTYPES_H]: Include inttypes.h.
|
||||||
|
|
||||||
2010-08-24 Richard Henderson <rth@redhat.com>
|
2010-08-24 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
PR bootstrap/45376
|
PR bootstrap/45376
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* Get common system includes and various definitions and declarations based
|
/* Get common system includes and various definitions and declarations based
|
||||||
on autoconf macros.
|
on autoconf macros.
|
||||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009
|
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009, 2010
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GCC.
|
This file is part of GCC.
|
||||||
|
@ -32,6 +32,9 @@ along with GCC; see the file COPYING3. If not see
|
||||||
#ifdef HAVE_STDINT_H
|
#ifdef HAVE_STDINT_H
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_INTTYPES_H
|
||||||
|
# include <inttypes.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue