Fix the pwd and group functions. The bb_ stuff was a leftover from
[oweals/busybox.git] / uniq.c
diff --git a/uniq.c b/uniq.c
index c0229aecb492c8d5e0a8ff7024e7d538b6cb2f27..84f1ed231014d75bc888a2cd633807363d2c1e01 100644 (file)
--- a/uniq.c
+++ b/uniq.c
@@ -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>
  *
@@ -26,7 +26,9 @@
 #include "busybox.h"
 #include <stdio.h>
 #include <string.h>
+#include <getopt.h>
 #include <errno.h>
+#include <stdlib.h>
 
 static int print_count;
 static int print_uniq = 1;