diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-11 09:16:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-11 09:16:32 +0000 |
commit | eaff43d5a8173b9c576dadb8d123e3348fb1b809 (patch) | |
tree | 038b7c132890f8ce3bb9fea63f92faba67ce7819 /src | |
parent | 912a810f6fb5a17dff7aa1780f915b50ce3ad671 (diff) | |
download | coreutils-eaff43d5a8173b9c576dadb8d123e3348fb1b809.tar.xz |
include xalloc.h
Diffstat (limited to 'src')
-rw-r--r-- | src/asa.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 <stdlib.h> #include <string.h> #include <errno.h> +#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); |