Commit 31a1fdad by Mark Mitchell Committed by Mark Mitchell

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
parent 2ac86f90
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>
......
......@@ -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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment