summaryrefslogtreecommitdiffstats
path: root/usr.bin/join
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1997-07-15 09:57:28 +0000
committercharnier <charnier@FreeBSD.org>1997-07-15 09:57:28 +0000
commit58b419d0c346d42dabc5211c4ce833127d725bf3 (patch)
treeda018846eaf0dca7be1c52c7ad27b80426187124 /usr.bin/join
parent783e86e99e0924be333e11330c40137ea8c44822 (diff)
downloadFreeBSD-src-58b419d0c346d42dabc5211c4ce833127d725bf3.zip
FreeBSD-src-58b419d0c346d42dabc5211c4ce833127d725bf3.tar.gz
Cosmetic in usage string.
Diffstat (limited to 'usr.bin/join')
-rw-r--r--usr.bin/join/join.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/usr.bin/join/join.c b/usr.bin/join/join.c
index 7b1e779..e3d42cf 100644
--- a/usr.bin/join/join.c
+++ b/usr.bin/join/join.c
@@ -36,13 +36,17 @@
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1991, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+#if 0
static char sccsid[] = "@(#)join.c 8.6 (Berkeley) 5/4/95";
+#endif
+static const char rcsid[] =
+ "$Id$";
#endif /* not lint */
#include <sys/param.h>
@@ -581,8 +585,9 @@ jbad: errx(1, "illegal option -- %s", ap);
void
usage()
{
- (void)fprintf(stderr, "%s%s\n",
- "usage: join [-a fileno | -v fileno ] [-e string] [-1 field] ",
- "[-2 field]\n [-o list] [-t char] file1 file2");
+ (void)fprintf(stderr, "%s %s\n%s\n",
+ "usage: join [-a fileno | -v fileno ] [-e string] [-1 field]",
+ "[-2 field]",
+ " [-o list] [-t char] file1 file2");
exit(1);
}
OpenPOWER on IntegriCloud