aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-08-23 22:55:53 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-08-23 22:55:53 -0700
commit2c4b1b0e3ce6e3a314d0782a52607fdb5d4d97bc (patch)
treed069833e7fc42b55b7b7675ea4526ccf98b34078
parent1c05298a8eae52d193b030e7aa6fdf114d7566be (diff)
downloadklibc-2c4b1b0e3ce6e3a314d0782a52607fdb5d4d97bc.tar.gz
[klibc] Add missing include file <getopt.h>klibc-1.4.24
Add <getopt.h>; previous checkin missed this header file. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--usr/include/getopt.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/usr/include/getopt.h b/usr/include/getopt.h
new file mode 100644
index 0000000000000..71c41cd965e56
--- /dev/null
+++ b/usr/include/getopt.h
@@ -0,0 +1,22 @@
+#ifndef _GETOPT_H
+#define _GETOPT_H
+
+#include <klibc/extern.h>
+
+struct option {
+ const char *name;
+ int has_arg;
+ int *flag;
+ int val;
+};
+
+enum {
+ no_argument = 0,
+ required_argument = 1,
+ optional_argument = 2,
+};
+
+__extern int getopt_long(int, char *const *, const char *,
+ const struct option *, int *);
+
+#endif /* _GETOPT_H */