diff options
author | Jim Wilson <wilson@cygnus.com> | 1997-08-22 21:39:10 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-08-22 14:39:10 -0700 |
commit | 19372aa11298a67c864d067ae2ab6534204b83cb (patch) | |
tree | 55032a17e6a3e566f846fb342c9a65c976ae91dd /gcc/acconfig.h | |
parent | ea16770fb129c32c08a82af834ba176c583415e9 (diff) | |
download | gcc-19372aa11298a67c864d067ae2ab6534204b83cb.tar.gz |
Fix AIX build problem when IBM cc is used.
* acconfig.h (NEED_DECLARATION_CALLOC): Add.
* configure.in: Add GCC_NEED_DECLARATION call for calloc.
* rs6000/xm-rs6000.h (malloc, realloc, calloc, free): Delete
declarations.
* config.in, configure: Regenerate.
From-SVN: r14896
Diffstat (limited to 'gcc/acconfig.h')
-rw-r--r-- | gcc/acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/acconfig.h b/gcc/acconfig.h index 690a21301a6..fcc71620a0a 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -9,6 +9,9 @@ /* Whether realloc must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_REALLOC +/* Whether calloc must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_CALLOC + /* Whether free must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_FREE @TOP@ |