diff options
Diffstat (limited to 'miscutils/adjtimex.c')
-rw-r--r-- | miscutils/adjtimex.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index 8e8ff8c0a..e1edbbebc 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -11,6 +11,18 @@ | |||
11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | //usage:#define adjtimex_trivial_usage | ||
15 | //usage: "[-q] [-o OFF] [-f FREQ] [-p TCONST] [-t TICK]" | ||
16 | //usage:#define adjtimex_full_usage "\n\n" | ||
17 | //usage: "Read and optionally set system timebase parameters. See adjtimex(2)\n" | ||
18 | //usage: "\nOptions:" | ||
19 | //usage: "\n -q Quiet" | ||
20 | //usage: "\n -o OFF Time offset, microseconds" | ||
21 | //usage: "\n -f FREQ Frequency adjust, integer kernel units (65536 is 1ppm)" | ||
22 | //usage: "\n (positive values make clock run faster)" | ||
23 | //usage: "\n -t TICK Microseconds per tick, usually 10000" | ||
24 | //usage: "\n -p TCONST" | ||
25 | |||
14 | #include "libbb.h" | 26 | #include "libbb.h" |
15 | #include <sys/timex.h> | 27 | #include <sys/timex.h> |
16 | 28 | ||