diff options
author | Ron Yorston <rmy@pobox.com> | 2022-02-09 11:24:33 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-02-09 11:24:33 +0000 |
commit | 7d5de438255f7571906a798bb6a3de80bd4c09d9 (patch) | |
tree | 5bf3fd97f37758777ef5806c52d66f912debd2e9 /coreutils/timeout.c | |
parent | 492d0a7492a57fe8f02c766e25960b0ce0d88759 (diff) | |
download | busybox-w32-7d5de438255f7571906a798bb6a3de80bd4c09d9.tar.gz busybox-w32-7d5de438255f7571906a798bb6a3de80bd4c09d9.tar.bz2 busybox-w32-7d5de438255f7571906a798bb6a3de80bd4c09d9.zip |
Fix POSIX build; new year
Diffstat (limited to 'coreutils/timeout.c')
-rw-r--r-- | coreutils/timeout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/timeout.c b/coreutils/timeout.c index 74df31d10..c8171ec54 100644 --- a/coreutils/timeout.c +++ b/coreutils/timeout.c | |||
@@ -42,7 +42,8 @@ | |||
42 | //usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS" | 42 | //usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS" |
43 | //usage:#define timeout_full_usage "\n\n" | 43 | //usage:#define timeout_full_usage "\n\n" |
44 | //usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n" | 44 | //usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n" |
45 | //usage: "Default SIG: TERM.\n" | 45 | //usage: IF_NOT_PLATFORM_MINGW32("Default SIG: TERM.") |
46 | //usage: IF_PLATFORM_MINGW32("Default SIG: TERM.\n") | ||
46 | //usage: "If it still exists in KILL_SECS seconds, send KILL.\n" | 47 | //usage: "If it still exists in KILL_SECS seconds, send KILL.\n" |
47 | 48 | ||
48 | #include "libbb.h" | 49 | #include "libbb.h" |