forgot to remove some debugging noise
[oweals/busybox.git] / wc.c
diff --git a/wc.c b/wc.c
index e6f753435610fa68bcd92a622c82bd8fbab83f32..f2d33d6f355f2c1155c273f5f2c360cf7b0a30eb 100644 (file)
--- a/wc.c
+++ b/wc.c
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <getopt.h>
+#include <stdlib.h>
+#include "busybox.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();
                        }
        }