summaryrefslogtreecommitdiff
path: root/utils/common/xgetopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common/xgetopt.c')
-rw-r--r--utils/common/xgetopt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/common/xgetopt.c b/utils/common/xgetopt.c
index 3eb08fe..7f3dc54 100644
--- a/utils/common/xgetopt.c
+++ b/utils/common/xgetopt.c
@@ -1,16 +1,16 @@
/*
- getopt.c
+ getopt.c
*/
#include <errno.h>
#include <string.h>
#include <stdio.h>
-
+
int xoptind = 1; /* index of which argument is next */
char *xoptarg; /* pointer to argument of current option */
int xopterr = 0; /* allow error message */
-
+
static char *letP = NULL; /* remember next option char's location */
char SW = '-'; /* DOS switch character, either '-' or '/' */