OSDN Git Service

* cppinit.c (cpp_init): Don't use ANSI prototypes.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Sep 2000 06:59:23 +0000 (06:59 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Sep 2000 06:59:23 +0000 (06:59 +0000)
* flow.c (flow_dump_loop): Likewise.
(flow_loops_dump): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36480 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppinit.c
gcc/flow.c

index f14c29b..926f622 100644 (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>
index f8dc690..196724a 100644 (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
index 900e028..9eef244 100644 (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;