aboutsummaryrefslogtreecommitdiff
path: root/coreutils/id.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-07-20 00:03:38 +0000
committerMark Whitley <markw@lineo.com>2000-07-20 00:03:38 +0000
commit99e370f0c655b24a44c7ebba7c35a36e6b6bd285 (patch)
tree9d613e05410bbbc05357d42a3975c55675a629a1 /coreutils/id.c
parentaa4f108338edeac0c69962aea5607a2c1d5ff0ec (diff)
downloadbusybox-99e370f0c655b24a44c7ebba7c35a36e6b6bd285.tar.gz
Whoops. Forgot to #include <getopt.h>.
Diffstat (limited to 'coreutils/id.c')
-rw-r--r--coreutils/id.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/id.c b/coreutils/id.c
index 4c524a225..6af677404 100644
--- a/coreutils/id.c
+++ b/coreutils/id.c
@@ -26,6 +26,7 @@
#include <unistd.h>
#include <pwd.h>
#include <grp.h>
+#include <getopt.h>
#include <sys/types.h>
extern int id_main(int argc, char **argv)