use tmpfile() and revert my previous changes... convert() belongs here
[oweals/busybox.git] / coreutils / length.c
index 1ab4e3a58d0bcf639f1cf3cdbffb0f6080607849..73becd28a3bacb7bdf1616e00d8ba62ef4e28fef 100644 (file)
@@ -1,13 +1,13 @@
 /* vi: set sw=4 ts=4: */
-#include "busybox.h"
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
+#include "busybox.h"
 
 extern int length_main(int argc, char **argv)
 {
        if (argc != 2 || **(argv + 1) == '-')
-               usage(length_usage);
+               show_usage();
        printf("%lu\n", (long)strlen(argv[1]));
        return EXIT_SUCCESS;
 }