summaryrefslogtreecommitdiff
path: root/gcc/config/rs6000/xm-rs6000.h
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1997-08-22 21:39:10 +0000
committerJim Wilson <wilson@gcc.gnu.org>1997-08-22 14:39:10 -0700
commit19372aa11298a67c864d067ae2ab6534204b83cb (patch)
tree55032a17e6a3e566f846fb342c9a65c976ae91dd /gcc/config/rs6000/xm-rs6000.h
parentea16770fb129c32c08a82af834ba176c583415e9 (diff)
downloadgcc-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/config/rs6000/xm-rs6000.h')
-rw-r--r--gcc/config/rs6000/xm-rs6000.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/config/rs6000/xm-rs6000.h b/gcc/config/rs6000/xm-rs6000.h
index df6e4e7ad97..9dbd41ed7ba 100644
--- a/gcc/config/rs6000/xm-rs6000.h
+++ b/gcc/config/rs6000/xm-rs6000.h
@@ -59,10 +59,3 @@ extern char *alloca ();
collect has a chance to see them, so scan the object files directly. */
#define COLLECT_EXPORT_LIST
#endif
-
-#ifndef __STDC__
-extern char *malloc (), *realloc (), *calloc ();
-#else
-extern void *malloc (), *realloc (), *calloc ();
-#endif
-extern void free ();