From: Jim Meyering Date: Fri, 11 Apr 2003 09:16:32 +0000 (+0000) Subject: include xalloc.h X-Git-Tag: v5.0.1~736 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaff43d5a8173b9c576dadb8d123e3348fb1b809;p=thirdparty%2Fcoreutils.git include xalloc.h --- diff --git a/src/asa.c b/src/asa.c index 19f6eead36..690881a73b 100644 --- a/src/asa.c +++ b/src/asa.c @@ -8,7 +8,7 @@ TODO */ /* asa.c - interpret ASA carriage control characters - Copyright (C) 94, 1996 Thomas Koenig + Copyright (C) 94, 1996, 2003 Thomas Koenig This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,6 +30,7 @@ TODO #include #include #include +#include "xalloc.h" /* Macros */ @@ -54,9 +55,6 @@ static size_t linebuf_size; /* Function declarations */ -char *xmalloc (); -char *xrealloc (); - static size_t readline (FILE *fp, char **a); static void add_line (str *); static void flush (void);