Rewrote mkdir (and touched lots of things in the process).
[oweals/busybox.git] / coreutils / uniq.c
index c0229aecb492c8d5e0a8ff7024e7d538b6cb2f27..53e3c64f29c421d48cbc1e8fc7044154b0b8ab5a 100644 (file)
@@ -3,7 +3,7 @@
  * Mini uniq implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <string.h>
+#include <getopt.h>
 #include <errno.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 static int print_count;
 static int print_uniq = 1;