diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-19 13:42:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-19 13:42:08 +0000 |
commit | d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac (patch) | |
tree | 732f39f3a15dcb56986ffd3900ab2fe3c46d0338 /include | |
parent | b9c02dd791041a4c3b87cb38354268893d739bd0 (diff) | |
download | busybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.tar.gz busybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.tar.bz2 busybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.zip |
libbb,crond,lash: fix getopt32 (don't know how it managed to slip through)
*: fcntl(fd, F_GETFL) doesn't require third parameter at all.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 2519aeb98..e514fe2f2 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -611,8 +611,7 @@ extern const char *opt_complementary; | |||
611 | extern const char *applet_long_options; | 611 | extern const char *applet_long_options; |
612 | #endif | 612 | #endif |
613 | extern uint32_t option_mask32; | 613 | extern uint32_t option_mask32; |
614 | /* TODO: don't pass argc, determine it by looking at argv */ | 614 | extern uint32_t getopt32(char **argv, const char *applet_opts, ...); |
615 | extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); | ||
616 | 615 | ||
617 | 616 | ||
618 | typedef struct llist_t { | 617 | typedef struct llist_t { |