diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-09 23:13:02 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-09 23:13:02 +0000 |
commit | 6ff2fe39337fb23db6ae2011efd6473a88a58132 (patch) | |
tree | 760b52810f3536e2b65c087bfc4d987320a2c3c1 /gcc/java/jcf.h | |
parent | b3339cf7a7bcf36a45d78484eef1edf32626a933 (diff) | |
download | gcc-6ff2fe39337fb23db6ae2011efd6473a88a58132.zip gcc-6ff2fe39337fb23db6ae2011efd6473a88a58132.tar.gz gcc-6ff2fe39337fb23db6ae2011efd6473a88a58132.tar.bz2 |
expr.c, [...]: Don't rely on the `DEFUN', `AND' or `__STDC__' macros.
* expr.c, gjavah.c, javaop.h, jcf-dump.c, jcf-io.c, jcf-reader.c,
jcf-write.c, jcf.h, jv-scan.c: Don't rely on the `DEFUN', `AND' or
`__STDC__' macros.
From-SVN: r61131
Diffstat (limited to 'gcc/java/jcf.h')
-rw-r--r-- | gcc/java/jcf.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/java/jcf.h b/gcc/java/jcf.h index ac36db1..63f5871 100644 --- a/gcc/java/jcf.h +++ b/gcc/java/jcf.h @@ -28,25 +28,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #ifndef GCC_JCF_H #define GCC_JCF_H #include "javaop.h" -#ifndef DEFUN -#if defined (__STDC__) -#define AND , -#define PTR void * -#define DEFUN(name, arglist, args) name(args) -#else -#define PTR char * -#define AND ; -#define DEFUN(name, arglist, args) name arglist args; -#endif -#endif /* !DEFUN */ - -#ifndef PARAMS -#if defined (__STDC__) -#define PARAMS (paramlist) paramlist -#else -#define PARAMS (paramlist) () -#endif -#endif #ifndef JCF_u4 #define JCF_u4 unsigned long |