diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 46180c5aa..bb27c59a1 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1183,7 +1183,9 @@ extern const char *opt_complementary; | |||
1183 | extern const char *applet_long_options; | 1183 | extern const char *applet_long_options; |
1184 | #endif | 1184 | #endif |
1185 | extern uint32_t option_mask32; | 1185 | extern uint32_t option_mask32; |
1186 | extern uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC; | 1186 | uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC; |
1187 | /* For top, ps. Some argv[i] are replaced by malloced "-opt" strings */ | ||
1188 | void make_all_argv_opts(char **argv) FAST_FUNC; | ||
1187 | /* BSD-derived getopt() functions require that optind be set to 1 in | 1189 | /* BSD-derived getopt() functions require that optind be set to 1 in |
1188 | * order to reset getopt() state. This used to be generally accepted | 1190 | * order to reset getopt() state. This used to be generally accepted |
1189 | * way of resetting getopt(). However, glibc's getopt() | 1191 | * way of resetting getopt(). However, glibc's getopt() |