]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Move prototypes after struct declarations.
authorJim Meyering <jim@meyering.net>
Sun, 5 Nov 1995 13:12:54 +0000 (13:12 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 5 Nov 1995 13:12:54 +0000 (13:12 +0000)
Remove prototypes for xmalloc, xrealloc.
(new_control_record): Cast arg 1 to realloc.

src/csplit.c

index a63c03a4c168873bfca63c202b9b15a72f207af8..703b13f866bfa5c8d7c07a31a373a0744ed32327 100644 (file)
@@ -43,16 +43,6 @@ char *realloc ();
 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
 #endif
 
-int safe_read ();
-
-static char *xrealloc (char *p, unsigned int n);
-static char *xmalloc (unsigned int n);
-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);
-
 #ifndef TRUE
 #define FALSE 0
 #define TRUE 1
@@ -129,6 +119,14 @@ struct buffer_record
   struct buffer_record *next;
 };
 
+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);
+
 /* The name this program was run with. */
 char *program_name;
 
@@ -1064,7 +1062,8 @@ new_control_record (void)
     {
       control_allocated += ALLOC_SIZE;
       controls = (struct control *)
-       xrealloc (controls, sizeof (struct control) * control_allocated);
+       xrealloc ((char *) controls,
+                 sizeof (struct control) * control_allocated);
     }
   p = &controls[control_used++];
   p->regexpr = NULL;