Fixed 'ls -s' so it actually displays block sizes again.
[oweals/busybox.git] / wc.c
diff --git a/wc.c b/wc.c
index e6f753435610fa68bcd92a622c82bd8fbab83f32..f416874226bccd66f045df03908ad937565ae318 100644 (file)
--- a/wc.c
+++ b/wc.c
@@ -23,6 +23,7 @@
 #include "busybox.h"
 #include <stdio.h>
 #include <getopt.h>
+#include <stdlib.h>
 
 static int total_lines, total_words, total_chars, max_length;
 static int print_lines, print_words, print_chars, print_length;
@@ -125,7 +126,7 @@ int wc_main(int argc, char **argv)
                                print_words = 1;
                                break;
                        default:
-                               usage(wc_usage);
+                               show_usage();
                        }
        }