diff options
| author | Philippe Charnier <charnier@FreeBSD.org> | 2001-12-12 18:25:53 +0000 |
|---|---|---|
| committer | Philippe Charnier <charnier@FreeBSD.org> | 2001-12-12 18:25:53 +0000 |
| commit | a9c9a0d15feb61f61fbf9e9d36fa0b0229d5aa2c (patch) | |
| tree | 95a82d20db6bb5315e6381c350a3578911591ae8 /usr.bin/fold | |
| parent | 93b3633be5a539b3d5806e62d37684c36d95d5ae (diff) | |
Notes
Diffstat (limited to 'usr.bin/fold')
| -rw-r--r-- | usr.bin/fold/fold.1 | 6 | ||||
| -rw-r--r-- | usr.bin/fold/fold.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/fold/fold.1 b/usr.bin/fold/fold.1 index f9f774d5e4be..63a52f287ba7 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 e402ae5bb316..48f6c721aa73 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 <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <err.h> #include <stdio.h> #include <stdlib.h> -#include <string.h> #include <unistd.h> #define DEFLINEWIDTH 80 |
