From: Jim Meyering Date: Sun, 5 Nov 1995 13:12:54 +0000 (+0000) Subject: Move prototypes after struct declarations. X-Git-Tag: TEXTUTILS-1_13F~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48f3bca87e2d52148f0d7dc1bae3a82a6bef9655;p=thirdparty%2Fcoreutils.git Move prototypes after struct declarations. Remove prototypes for xmalloc, xrealloc. (new_control_record): Cast arg 1 to realloc. --- diff --git a/src/csplit.c b/src/csplit.c index a63c03a4c1..703b13f866 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -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;