aboutsummaryrefslogtreecommitdiff
path: root/util-linux/getopt.c
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2017-04-12 00:58:46 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-04-12 20:11:34 +0200
commit835ad3a984c5590ae4f6c94f2f0781ea049d1ae8 (patch)
treecb86c5441c258f66358faa93ef899e09a7788de8 /util-linux/getopt.c
parentc5496d3585bcab3c39f9b10f638ba0c94f5cda3f (diff)
downloadbusybox-835ad3a984c5590ae4f6c94f2f0781ea049d1ae8.tar.gz
libbb: GETOPT_RESET macro
Signed-off-by: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r--util-linux/getopt.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c
index 63294c520..79d54854b 100644
--- a/util-linux/getopt.c
+++ b/util-linux/getopt.c
@@ -246,12 +246,7 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
/* We used it already in main() in getopt32(),
* we *must* reset getopt(3): */
-#ifdef __GLIBC__
- optind = 0;
-#else /* BSD style */
- optind = 1;
- /* optreset = 1; */
-#endif
+ GETOPT_RESET();
while (1) {
#if ENABLE_FEATURE_GETOPT_LONG