forgot to remove some debugging noise
[oweals/busybox.git] / wc.c
diff --git a/wc.c b/wc.c
index f416874226bccd66f045df03908ad937565ae318..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;