diff options
author | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-12 19:27:49 +0000 |
---|---|---|
committer | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-12 19:27:49 +0000 |
commit | c75dca4902ad96d90237f6ab49c368ecb1ff3e52 (patch) | |
tree | 17933ebe7d8de121ec47c896cf51dd424e7498fd /libgfortran/config.h.in | |
parent | 2c91fb39d3dca3aa4300047463649d5b108d28fb (diff) | |
download | gcc-c75dca4902ad96d90237f6ab49c368ecb1ff3e52.tar.gz |
Cleanup memsize types
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172340 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index a255bdccf30..76f1b2d3d16 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -630,6 +630,9 @@ /* libm includes powl */ #undef HAVE_POWL +/* Define to 1 if the system has the type `ptrdiff_t'. */ +#undef HAVE_PTRDIFF_T + /* Define to 1 if you have the <pwd.h> header file. */ #undef HAVE_PWD_H @@ -945,5 +948,13 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE +/* Define to the type of a signed integer type wide enough to hold a pointer, + if such a type exists, and if the system does not define it. */ +#undef intptr_t + /* Define to `long int' if <sys/types.h> does not define. */ #undef off_t + +/* Define to the type of an unsigned integer type wide enough to hold a + pointer, if such a type exists, and if the system does not define it. */ +#undef uintptr_t |