diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-15 16:34:54 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-15 16:34:54 +0000 |
commit | a6c674b94b4d2c6732a58760d9086657d884671b (patch) | |
tree | 140cd30d77342c730afbc1df863bec93c63978a8 /coreutils/sort.c | |
parent | c8ca3c6625e1a3f234c3f0a1ab3142179a3e529f (diff) | |
download | busybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.tar.gz busybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.tar.bz2 busybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.zip |
More documentation updates, and minor fixes to make things sync
up with the docs.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@457 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r-- | coreutils/sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 6ee6f207e..4301f4303 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -33,7 +33,7 @@ static const char sort_usage[] = "sort [-n]" | |||
33 | #ifdef BB_FEATURE_SORT_REVERSE | 33 | #ifdef BB_FEATURE_SORT_REVERSE |
34 | " [-r]" | 34 | " [-r]" |
35 | #endif | 35 | #endif |
36 | " [FILE]...\n\n"; | 36 | " [FILE]...\n\nSorts lines of text in the specified files\n"; |
37 | 37 | ||
38 | #ifdef BB_FEATURE_SORT_REVERSE | 38 | #ifdef BB_FEATURE_SORT_REVERSE |
39 | #define APPLY_REVERSE(x) (reverse ? -(x) : (x)) | 39 | #define APPLY_REVERSE(x) (reverse ? -(x) : (x)) |
@@ -320,4 +320,4 @@ int sort_main(int argc, char **argv) | |||
320 | exit(0); | 320 | exit(0); |
321 | } | 321 | } |
322 | 322 | ||
323 | /* $Id: sort.c,v 1.13 2000/04/13 01:18:56 erik Exp $ */ | 323 | /* $Id: sort.c,v 1.14 2000/04/15 16:34:54 erik Exp $ */ |