From 3e6ff9017f5aa4ea41de2520a3f6d29fb20e0332 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 9 Mar 2001 21:24:12 +0000 Subject: A cleanup patch from Jeff Garzik to static-ify a number of namespace polluting things that really should be static. --- coreutils/head.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/head.c') diff --git a/coreutils/head.c b/coreutils/head.c index fac9ec659..0c8ef3d59 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -29,7 +29,7 @@ #include #include "busybox.h" -int head(int len, FILE *fp) +static int head(int len, FILE *fp) { int i; char *input; -- cgit v1.2.3