X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=head.c;h=0c8ef3d5907b8f020b90a7780c964fe281c4e905;hb=8a9b2c6448e32f16e4b65dbd4927d9108c007acc;hp=7d87f32cbad815e20fde56cf1080dbb4ffd2adf1;hpb=8ec10a9483f937743cba51124b30540c9613fca8;p=oweals%2Fbusybox.git diff --git a/head.c b/head.c index 7d87f32cb..0c8ef3d59 100644 --- a/head.c +++ b/head.c @@ -22,13 +22,14 @@ * */ -#include "busybox.h" #include #include #include #include +#include +#include "busybox.h" -int head(int len, FILE *fp) +static int head(int len, FILE *fp) { int i; char *input; @@ -57,7 +58,7 @@ int head_main(int argc, char **argv) break; /* fallthrough */ default: - usage(head_usage); + show_usage(); } }