Patch installed: i386/cygwin.h PROTO->PARAMS

Kaveh R. Ghazi ghazi@caip.rutgers.edu
Wed Jan 26 13:24:00 GMT 2000


Oops, missed one.  Installed.


Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/egcs/gcc/ChangeLog,v
retrieving revision 1.5539
diff -u -p -r1.5539 ChangeLog
--- ChangeLog	2000/01/26 20:14:09	1.5539
+++ ChangeLog	2000/01/26 21:09:00
@@ -1,3 +1,7 @@
+2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* i386/cygwin.h: PROTO -> PARAMS.
+
 2000-01-26  Jakub Jelinek  <jakub@redhat.com>
 
 	* config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
Index: config/i386/cygwin.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/i386/cygwin.h,v
retrieving revision 1.15
diff -u -p -r1.15 cygwin.h
--- cygwin.h	2000/01/04 21:11:17	1.15
+++ cygwin.h	2000/01/26 21:09:01
@@ -496,24 +496,24 @@ do {									\
 
 /* External function declarations.  */
 
-#ifndef PROTO
+#ifndef PARAMS
 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
-#define PROTO(ARGS) ARGS
+#define PARAMS(ARGS) ARGS
 #else
-#define PROTO(ARGS) ()
+#define PARAMS(ARGS) ()
 #endif
 #endif
 
 #ifdef BUFSIZ		/* stdio.h has been included, ok to use FILE * */
-#define STDIO_PROTO(ARGS) PROTO(ARGS)
+#define STDIO_PARAMS(ARGS) PARAMS(ARGS)
 #else
-#define STDIO_PROTO(ARGS) ()
+#define STDIO_PARAMS(ARGS) ()
 #endif
 
-extern void i386_pe_record_external_function PROTO((char *));
-extern void i386_pe_declare_function_type STDIO_PROTO((FILE *, char *, int));
-extern void i386_pe_record_exported_symbol PROTO((char *, int));
-extern void i386_pe_asm_file_end STDIO_PROTO((FILE *));
+extern void i386_pe_record_external_function PARAMS ((char *));
+extern void i386_pe_declare_function_type STDIO_PARAMS ((FILE *, char *, int));
+extern void i386_pe_record_exported_symbol PARAMS ((char *, int));
+extern void i386_pe_asm_file_end STDIO_PARAMS ((FILE *));
 
 /* For Win32 ABI compatibility */
 #undef DEFAULT_PCC_STRUCT_RETURN


More information about the Gcc-patches mailing list