diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-10-20 23:25:57 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-10-20 23:25:57 +0000 |
commit | a9770f9a9131cbd7420d1eee0edac01ec19eda6f (patch) | |
tree | 4e2a40c16f7b833585f87026269759be05ab6b00 /libjava/interpret.cc | |
parent | 05c1707ca2e257dd071ed73e802862b72d1ce018 (diff) | |
download | gcc-a9770f9a9131cbd7420d1eee0edac01ec19eda6f.zip gcc-a9770f9a9131cbd7420d1eee0edac01ec19eda6f.tar.gz gcc-a9770f9a9131cbd7420d1eee0edac01ec19eda6f.tar.bz2 |
From Arno J. Klaassen:
* interpret.cc: Include <stdlib.h> for alloca.
* defineclass.cc: Include <stdlib.h> for alloca.
From-SVN: r36986
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index 7f2ad62..0a069ac 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -35,6 +35,7 @@ details. */ #ifdef INTERPRETER +#include <stdlib.h> #if HAVE_ALLOCA_H #include <alloca.h> #endif |