diff options
author | Kaarle Ritvanen | 2017-04-12 00:58:46 +0300 |
---|---|---|
committer | Denys Vlasenko | 2017-04-12 20:11:34 +0200 |
commit | 835ad3a984c5590ae4f6c94f2f0781ea049d1ae8 (patch) | |
tree | cb86c5441c258f66358faa93ef899e09a7788de8 /libbb/getopt32.c | |
parent | c5496d3585bcab3c39f9b10f638ba0c94f5cda3f (diff) | |
download | busybox-835ad3a984c5590ae4f6c94f2f0781ea049d1ae8.zip busybox-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 'libbb/getopt32.c')
-rw-r--r-- | libbb/getopt32.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c index 497fc01..3104826 100644 --- a/libbb/getopt32.c +++ b/libbb/getopt32.c @@ -576,13 +576,7 @@ getopt32(char **argv, const char *applet_opts, ...) * run_nofork_applet() does this, but we might end up here * also via gunzip_main() -> gzip_main(). Play safe. */ -#ifdef __GLIBC__ - optind = 0; -#else /* BSD style */ - optind = 1; - /* optreset = 1; */ -#endif - /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */ + GETOPT_RESET(); /* Note: just "getopt() <= 0" will not work well for * "fake" short options, like this one: |