summaryrefslogtreecommitdiffstats
path: root/time/optind.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/optind.c')
-rw-r--r--time/optind.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/time/optind.c b/time/optind.c
new file mode 100644
index 000000000..70c1db23e
--- /dev/null
+++ b/time/optind.c
@@ -0,0 +1,10 @@
+#ifndef lint
+#ifndef NOID
+static char elsieid[] = "@(#)optind.c 7.3";
+#endif /* !defined NOID */
+#endif /* !defined lint */
+
+int opterr = 1, /* if error message should be printed */
+ optind = 1; /* index into parent argv vector */
+char *optarg; /* argument associated with option */
+int optopt;