diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-18 00:50:15 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-18 00:50:15 +0000 |
commit | b085c511605220f34536dddc5853ecdfc2eaa5a9 (patch) | |
tree | 7fbe39bbebaa4abf0c53805c3c41427a23947f51 /gcc/config.in | |
parent | a93de1eea13f1bf4f33b97e0c2d212d95641f3a7 (diff) | |
download | gcc-b085c511605220f34536dddc5853ecdfc2eaa5a9.tar.gz |
2004-09-17 Jones Desougi <jones@ingate.com>
* configure.ac: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
* configure, config.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config.in b/gcc/config.in index 1755c8a3721..e71ac94de75 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -543,22 +543,22 @@ /* Define to PREFIX/include if cpp should also search that directory. */ #undef PREFIX_INCLUDE_DIR -/* The number of bytes in type int */ +/* The size of a `int', as computed by sizeof. */ #undef SIZEOF_INT -/* The number of bytes in type long */ +/* The size of a `long', as computed by sizeof. */ #undef SIZEOF_LONG -/* The number of bytes in type long long */ +/* The size of a `long long', as computed by sizeof. */ #undef SIZEOF_LONG_LONG -/* The number of bytes in type short */ +/* The size of a `short', as computed by sizeof. */ #undef SIZEOF_SHORT -/* The number of bytes in type void * */ +/* The size of a `void *', as computed by sizeof. */ #undef SIZEOF_VOID_P -/* The number of bytes in type __int64 */ +/* The size of a `__int64', as computed by sizeof. */ #undef SIZEOF___INT64 /* Define to 1 if you have the ANSI C header files. */ |