aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/gjavah.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-02-01 07:00:40 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-02-01 07:00:40 +0000
commit9caaf519d8e51366ccd4183184d2fa3f7ed73b84 (patch)
tree570b8b7b27d55e193909beb5ec53c37b7769cbd4 /gcc/java/gjavah.c
parent8a68e183019a0a1a27c0a697d7a44bb13522eb99 (diff)
downloadgcc-9caaf519d8e51366ccd4183184d2fa3f7ed73b84.zip
gcc-9caaf519d8e51366ccd4183184d2fa3f7ed73b84.tar.gz
gcc-9caaf519d8e51366ccd4183184d2fa3f7ed73b84.tar.bz2
Makefile.in (gjavah.o): Depend on $(CONFIG_H) and system.h.
* Makefile.in (gjavah.o): Depend on $(CONFIG_H) and system.h. * gjavah.c: Include config.h and system.h. * javaop.h (inline): Don't define, its handled by system.h. (WORD_TO_FLOAT, WORDS_TO_LONG, WORDS_TO_DOUBLE): Change these from `inline' to `static inline'. * jcf.h (inline): Don't define, its handled by system.h. * lex.c (inline): Likewise. From-SVN: r24952
Diffstat (limited to 'gcc/java/gjavah.c')
-rw-r--r--gcc/java/gjavah.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c
index 34f11a6..df47777 100644
--- a/gcc/java/gjavah.c
+++ b/gcc/java/gjavah.c
@@ -24,16 +24,11 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
/* Written by Per Bothner <bothner@cygnus.com>, February 1996. */
-#include <stdio.h>
+#include "config.h"
+#include "system.h"
#include "jcf.h"
-#ifdef __STDC__
-#include <stdlib.h>
-#endif
-#include <math.h>
-
-#include <string.h>
-
#include "java-opcodes.h"
+#include <math.h>
/* The output file. */
FILE *out = NULL;