diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-10 08:50:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-10 08:50:00 +0000 |
commit | e1ddafb2f032c7536d864a67bd9221f4e2c814fe (patch) | |
tree | 8cee34c24f2d323b84df6e19c6a87065ad36c8c0 | |
parent | 0d87ae92fb80f875037d28f714ba94378b537da5 (diff) | |
download | coreutils-e1ddafb2f032c7536d864a67bd9221f4e2c814fe.tar.xz |
Include <stdlib.h>.
(free): Remove decl.
-rw-r--r-- | lib/linebuffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/linebuffer.c b/lib/linebuffer.c index 770ad62aa..e169a989d 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -24,13 +24,12 @@ #endif #include <stdio.h> +#include <stdlib.h> #include <sys/types.h> #include "linebuffer.h" #include "unlocked-io.h" #include "xalloc.h" -void free (); - /* Initialize linebuffer LINEBUFFER for use. */ void |