jvspec.c (xmalloc): Fix the prototype to match the one obtained from libiberty.h
* jvspec.c (xmalloc): Fix the prototype to match the one obtained from libiberty.h From-SVN: r24975
This commit is contained in:
parent
809934dfbb
commit
b0f780c3bf
@ -1,3 +1,8 @@
|
||||
Tue Feb 2 20:04:50 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* jvspec.c (xmalloc): Fix the prototype to match the one obtained
|
||||
from libiberty.h
|
||||
|
||||
Tue Feb 2 10:39:47 1999 Per Bothner <bothner@cygnus.com>
|
||||
|
||||
Optimize: `return (a ? b : c)' as: `if (a) return b; else return c;'.
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* Specific flags and argument handling of the front-end of the
|
||||
GNU compiler for the Java(TM) language.
|
||||
Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 97-98, 1999 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU CC.
|
||||
|
||||
@ -61,7 +61,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
|
||||
#define MATH_LIBRARY "-lm"
|
||||
#endif
|
||||
|
||||
extern char *xmalloc PROTO((size_t));
|
||||
extern GENERIC_PTR xmalloc PROTO((size_t));
|
||||
extern int do_spec PROTO((char *));
|
||||
extern char *input_filename;
|
||||
extern size_t input_filename_length;
|
||||
|
Loading…
Reference in New Issue
Block a user