diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-28 16:10:43 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-28 16:10:43 -0400 |
commit | a3764914519e249d7b33b9bc5b4208384fbd7558 (patch) | |
tree | dc20591174ac6fedea35b477e6e26e526482e518 | |
parent | 5f91c70932f84420500308938e40adbac444f2b6 (diff) | |
download | gcc-a3764914519e249d7b33b9bc5b4208384fbd7558.zip gcc-a3764914519e249d7b33b9bc5b4208384fbd7558.tar.gz gcc-a3764914519e249d7b33b9bc5b4208384fbd7558.tar.bz2 |
(alloca): Extern decl added for non-GNU compiler.
From-SVN: r10071
-rw-r--r-- | gcc/config/rs6000/xm-rs6000.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/rs6000/xm-rs6000.h b/gcc/config/rs6000/xm-rs6000.h index 0517530..9dbd41e 100644 --- a/gcc/config/rs6000/xm-rs6000.h +++ b/gcc/config/rs6000/xm-rs6000.h @@ -44,6 +44,7 @@ Boston, MA 02111-1307, USA. */ /* If not compiled with GNU C, use the C alloca and use only int bitfields. */ #ifndef __GNUC__ #define USE_C_ALLOCA +extern char *alloca (); #define ONLY_INT_FIELDS #endif |