diff options
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index c5c11fc..ad21e1b 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -25,6 +25,7 @@ #include <getopt.h> #include <stdlib.h> #include <string.h> +#include <ctype.h> #include "busybox.h" static int head(int len, FILE *fp) @@ -47,7 +48,7 @@ int head_main(int argc, char **argv) FILE *fp; int need_headers, opt, len = 10, status = EXIT_SUCCESS; - if (( argc >= 2 ) && ( strlen ( argv [1] ) >= 2 ) && ( argv [1][0] == '-' ) && isdigit ( argv [1][1] )) { + if (( argc >= 2 ) && ( argv [1][0] == '-' ) && isdigit ( argv [1][1] )) { len = atoi ( &argv [1][1] ); optind = 2; } |