diff options
author | mpp <mpp@FreeBSD.org> | 1996-03-11 03:36:10 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1996-03-11 03:36:10 +0000 |
commit | 408d3a61bb6a9c485758c0ab727713284f517ce6 (patch) | |
tree | 9af1d2e76f8002c686569968074075e162d968ed /usr.bin/strip | |
parent | 7b57b8465d2d9fade59725bc2e86cc51f03c26de (diff) | |
download | FreeBSD-src-408d3a61bb6a9c485758c0ab727713284f517ce6.zip FreeBSD-src-408d3a61bb6a9c485758c0ab727713284f517ce6.tar.gz |
Add the -x option to the usage string.
Submitted by: Philippe Charnier <charnier@lirmm.fr>
Diffstat (limited to 'usr.bin/strip')
-rw-r--r-- | usr.bin/strip/strip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/strip/strip.c b/usr.bin/strip/strip.c index 42cc96e..354213a 100644 --- a/usr.bin/strip/strip.c +++ b/usr.bin/strip/strip.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)strip.c 8.1 (Berkeley) 6/6/93";*/ -static char RCSid[] = "$Id: strip.c,v 1.4 1994/12/18 01:18:17 ache Exp $"; +static char RCSid[] = "$Id: strip.c,v 1.5 1995/05/30 06:34:16 rgrimes Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -242,7 +242,7 @@ s_stab(fn, fd, ep) void usage() { - (void)fprintf(stderr, "usage: strip [-d] file ...\n"); + (void)fprintf(stderr, "usage: strip [-dx] file ...\n"); exit(1); } |