cppinit.c (cpp_init): Don't use ANSI prototypes.

* cppinit.c (cpp_init): Don't use ANSI prototypes.
	* flow.c (flow_dump_loop): Likewise.
	(flow_loops_dump): Likewise.

From-SVN: r36480
This commit is contained in:
Mark Mitchell 2000-09-18 06:59:23 +00:00 committed by Mark Mitchell
parent 2ac86f90af
commit 31a1fdad32
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
2000-09-17 Mark Mitchell <mark@codesourcery.com>
* cppinit.c (cpp_init): Don't use ANSI prototypes.
* flow.c (flow_dump_loop): Likewise.
(flow_loops_dump): Likewise.
* c-typeck.c (c_start_case): Fix typo.
2000-09-17 Joseph S. Myers <jsm28@cam.ac.uk>

View file

@ -405,7 +405,7 @@ merge_include_chains (pfile)
static int cpp_init_completed = 0;
void
cpp_init (void)
cpp_init ()
{
#ifdef HOST_EBCDIC
/* For non-ASCII hosts, the cl_options array needs to be sorted at

View file

@ -7355,7 +7355,7 @@ void
flow_loop_dump (loop, file, loop_dump_aux, verbose)
const struct loop *loop;
FILE *file;
void (*loop_dump_aux)(const struct loop *, FILE *, int);
void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
int verbose;
{
if (! loop || ! loop->header)
@ -7399,7 +7399,7 @@ void
flow_loops_dump (loops, file, loop_dump_aux, verbose)
const struct loops *loops;
FILE *file;
void (*loop_dump_aux)(const struct loop *, FILE *, int);
void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
int verbose;
{
int i;