X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Flength.c;h=1ab4e3a58d0bcf639f1cf3cdbffb0f6080607849;hb=87559829ffc79b94adcee00b64706ce78ff2f3fb;hp=cf4fb1c079dba9812e32d7d668c886c0b6b6fa2d;hpb=bf181b9338152759fd56c8009e9a962a84808e7c;p=oweals%2Fbusybox.git diff --git a/coreutils/length.c b/coreutils/length.c index cf4fb1c07..1ab4e3a58 100644 --- a/coreutils/length.c +++ b/coreutils/length.c @@ -1,5 +1,5 @@ /* vi: set sw=4 ts=4: */ -#include "internal.h" +#include "busybox.h" #include #include #include @@ -9,5 +9,5 @@ extern int length_main(int argc, char **argv) if (argc != 2 || **(argv + 1) == '-') usage(length_usage); printf("%lu\n", (long)strlen(argv[1])); - return (TRUE); + return EXIT_SUCCESS; }