Protect prototypes with __P.
authorJim Meyering <jim@meyering.net>
Sun, 5 Nov 1995 13:16:24 +0000 (13:16 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 5 Nov 1995 13:16:24 +0000 (13:16 +0000)
src/csplit.c

index 703b13f866bfa5c8d7c07a31a373a0744ed32327..6c305f6b6dd1eff15c57da3a6b904b0a7acda6e3 100644 (file)
@@ -119,13 +119,21 @@ struct buffer_record
   struct buffer_record *next;
 };
 
+#ifndef __P
+# if PROTOTYPES
+#  define __P(Args) Args
+# else
+#  define __P(Args) ()
+# endif
+#endif
+
 int safe_read ();
 
-static void cleanup (void);
-static void close_output_file (void);
-static void create_output_file (void);
-static void save_line_to_file (struct cstring *line);
-static void usage (int status);
+static void cleanup __P ((void));
+static void close_output_file __P ((void));
+static void create_output_file __P ((void));
+static void save_line_to_file __P ((struct cstring *line));
+static void usage __P ((int status));
 
 /* The name this program was run with. */
 char *program_name;