m4-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14-fyi-prototypes.patch


From: Akim Demaille
Subject: 14-fyi-prototypes.patch
Date: Sat, 13 Oct 2001 08:32:18 +0200

Index: ChangeLog
from  Akim Demaille  <address@hidden>
        
        * m4/output.c (m4_make_diversion, m4_insert_file)
        (m4_insert_diversion, +m4_freeze_diversions): Ansify.
        
Index: m4/output.c
--- m4/output.c Sat, 22 Sep 2001 12:59:08 +0200 akim
+++ m4/output.c Fri, 05 Oct 2001 18:29:02 +0200 akim
@@ -514,8 +514,7 @@
    available file descriptors (each overflowing diversion uses one).  */
 
 void
-m4_make_diversion (divnum)
-     int divnum;
+m4_make_diversion (int divnum)
 {
   struct diversion *diversion;
 
@@ -561,8 +560,7 @@
    diversions are handled.  This allows files to be included, without
    having them rescanned by m4.  */
 void
-m4_insert_file (file)
-     FILE *file;
+m4_insert_file (FILE *file)
 {
   char buffer[COPY_BUFFER_SIZE];
   size_t length;
@@ -586,8 +584,7 @@
    diversion is NOT placed on the expansion obstack, because it must not
    be rescanned.  When the file is closed, it is deleted by the system.  */
 void
-m4_insert_diversion (divnum)
-     int divnum;
+m4_insert_diversion (int divnum)
 {
   struct diversion *diversion;
 
@@ -646,8 +643,7 @@
 
 /* Produce all diversion information in frozen format on FILE.  */
 void
-m4_freeze_diversions (file)
-     FILE *file;
+m4_freeze_diversions (FILE *file)
 {
   int saved_number;
   int last_inserted;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]