This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch installed for K&R compat in cppinit.c


I installed the following minor K&R fix in cppinit.c


Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/egcs/gcc/ChangeLog,v
retrieving revision 1.5909
diff -u -p -r1.5909 ChangeLog
--- ChangeLog	2000/03/12 08:00:07	1.5909
+++ ChangeLog	2000/03/12 13:55:09
@@ -1,3 +1,7 @@
+2000-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* cppinit.c (cl_directive_handler): More K&R fixing.
+
 Sat Mar 11 23:54:26 2000  Jim Wilson  <wilson@cygnus.com>
 
 	* config/ia64/ia64.c (ia64_compute_frame_size): Align size to
Index: cppinit.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/cppinit.c,v
retrieving revision 1.60
diff -u -p -r1.60 cppinit.c
--- cppinit.c	2000/03/12 04:33:26	1.60
+++ cppinit.c	2000/03/12 13:55:09
@@ -165,7 +165,7 @@ static const struct default_include incl
    -D, ignored for the others.
    (Future: add an equivalent of -U for -A) */
 
-typedef void (* cl_directive_handler) (cpp_reader *, const char *);
+typedef void (* cl_directive_handler) PARAMS ((cpp_reader *, const char *));
 struct pending_option
 {
   struct pending_option *next;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]