diff options
Diffstat (limited to 'coreutils/od.c')
-rw-r--r-- | coreutils/od.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/coreutils/od.c b/coreutils/od.c index 31ebde2..fb11fcf 100644 --- a/coreutils/od.c +++ b/coreutils/od.c @@ -11,11 +11,12 @@ * Original copyright notice is retained at the end of this file. */ +//usage:#if !ENABLE_DESKTOP //usage:#define od_trivial_usage -//usage: "[-aBbcDdeFfHhIiLlOovXx] " IF_DESKTOP("[-t TYPE] ") "[FILE]" +//usage: "[-aBbcDdeFfHhIiLlOovXx] [FILE]" //usage:#define od_full_usage "\n\n" -//usage: "Write an unambiguous representation, octal bytes by default, of FILE\n" -//usage: "(or stdin) to stdout" +//usage: "Print FILE (or stdin) unambiguously, as octal bytes by default" +//usage:#endif #include "libbb.h" #if ENABLE_DESKTOP |