diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2023-10-02 13:56:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2023-10-02 13:56:32 +0200 |
commit | 791b222dd55d3aa0e8b09be1be571e4829465dd6 (patch) | |
tree | 64af8d2c7a5787055bacb15c8a9f20ed51c2732f /include | |
parent | 2cc9d436e80632157b99e18d413a62b2d44d321a (diff) | |
download | busybox-w32-791b222dd55d3aa0e8b09be1be571e4829465dd6.tar.gz busybox-w32-791b222dd55d3aa0e8b09be1be571e4829465dd6.tar.bz2 busybox-w32-791b222dd55d3aa0e8b09be1be571e4829465dd6.zip |
sleep: fix "sleep -- ARGS"
function old new delta
sleep_main 116 119 +3
printf_main 860 837 -23
single_argv 50 25 -25
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 3/-48) Total: -45 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index eb97a9880..0883fb565 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1344,6 +1344,7 @@ int sanitize_env_if_suid(void) FAST_FUNC; | |||
1344 | /* For top, ps. Some argv[i] are replaced by malloced "-opt" strings */ | 1344 | /* For top, ps. Some argv[i] are replaced by malloced "-opt" strings */ |
1345 | void make_all_argv_opts(char **argv) FAST_FUNC; | 1345 | void make_all_argv_opts(char **argv) FAST_FUNC; |
1346 | char* single_argv(char **argv) FAST_FUNC; | 1346 | char* single_argv(char **argv) FAST_FUNC; |
1347 | char **skip_dash_dash(char **argv) FAST_FUNC; | ||
1347 | extern const char *const bb_argv_dash[]; /* { "-", NULL } */ | 1348 | extern const char *const bb_argv_dash[]; /* { "-", NULL } */ |
1348 | extern uint32_t option_mask32; | 1349 | extern uint32_t option_mask32; |
1349 | uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC; | 1350 | uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC; |