From a5cd3299b75ca8f871d433a5fb1b53d7605acac8 Mon Sep 17 00:00:00 2001 From: charnier Date: Wed, 12 Dec 2001 18:25:53 +0000 Subject: Make clear that -w gets an argument. Add __FBSDID and remove unused #include --- usr.bin/fold/fold.1 | 6 +++--- usr.bin/fold/fold.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'usr.bin/fold') diff --git a/usr.bin/fold/fold.1 b/usr.bin/fold/fold.1 index f9f774d..63a52f2 100644 --- a/usr.bin/fold/fold.1 +++ b/usr.bin/fold/fold.1 @@ -48,10 +48,10 @@ is a filter which folds the contents of the specified files, or the standard input if no files are specified, breaking the lines to have a maximum of 80 characters. .Pp -The options are as follows: +The following option is available: .Bl -tag -width indent -.It Fl w -Specifies a line width to use instead of the default 80 characters. +.It Fl w Ar width +Specify a line width to use instead of the default 80 characters. .Ar Width should be a multiple of 8 if tabs are present, or the tabs should be expanded using diff --git a/usr.bin/fold/fold.c b/usr.bin/fold/fold.c index e402ae5..48f6c72 100644 --- a/usr.bin/fold/fold.c +++ b/usr.bin/fold/fold.c @@ -44,14 +44,14 @@ static const char copyright[] = #if 0 static char sccsid[] = "@(#)fold.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include +__FBSDID("$FreeBSD$"); + #include #include #include -#include #include #define DEFLINEWIDTH 80 -- cgit v1.1