diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-02 18:53:27 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-02 18:53:27 +0000 |
commit | 56c15991b10cbf3411186734460e0a5c19805dec (patch) | |
tree | 617d15c744e086d1f228e2064e3a25400263e524 /libgfortran/libgfortran.h | |
parent | 9c19a7461cdc52b9f320abdf7db980c3efdb16a5 (diff) | |
download | gcc-56c15991b10cbf3411186734460e0a5c19805dec.tar.gz |
config:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* stdint.m4: New.
gcc:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* Makefile.in (DECNUMINC): Include libdecnumber's build directory.
libgfortran:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* libgfortran.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
libdecnumber:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* decContext.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109241 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r-- | libgfortran/libgfortran.h | 38 |
1 files changed, 3 insertions, 35 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index b64b60b1894..3b8eed26cb9 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -1,5 +1,5 @@ -/* Common declarations for all of libgfor. - Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +/* Common declarations for all of libgfortran. + Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org>, and Andy Vaught <andy@xena.eas.asu.edu> @@ -51,39 +51,7 @@ Boston, MA 02110-1301, USA. */ #include <ieeefp.h> #endif -#if HAVE_STDINT_H -#include <stdint.h> -#endif - -#if HAVE_INTTYPES_H -#include <inttypes.h> -#endif - -#if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H) && defined(TARGET_ILP32) -typedef char int8_t; -typedef short int16_t; -typedef int int32_t; -typedef long long int64_t; -typedef unsigned char uint8_t; -#if defined(__sun) && defined(__svr4__) -/* Prevent <pthread.h> from redefining uint8_t on Solaris 2.5.1 - FIXME when the header inclusion scheme is revisited. */ -#define _UINT8_T -#endif -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; -#if defined(__sun) && defined(__svr4__) -/* Prevent <pthread.h> from redefining uint32_t on Solaris 2.5.1 - FIXME when the header inclusion scheme is revisited. */ -#define _UINT32_T -#endif -typedef unsigned long long uint64_t; -#if defined(__sun) && defined(__svr4__) -/* Prevent <pthread.h> from redefining uint64_t on Solaris 2.5.1 - FIXME when the header inclusion scheme is revisited. */ -#define _UINT64_T -#endif -#endif +#include "gstdint.h" #if HAVE_SYS_TYPES_H #include <sys/types.h> |