diff options
author | charnier <charnier@FreeBSD.org> | 1999-12-05 20:01:28 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1999-12-05 20:01:28 +0000 |
commit | c8780c9c32e8026b30fcd0b9fe602e0fa91027c6 (patch) | |
tree | 0fc8f07c8bc74de4cdddb703eb361a9cebcacd41 /usr.bin/c89 | |
parent | 345f916537662d077177ceb1c7c10258d69143c0 (diff) | |
download | FreeBSD-src-c8780c9c32e8026b30fcd0b9fe602e0fa91027c6.zip FreeBSD-src-c8780c9c32e8026b30fcd0b9fe602e0fa91027c6.tar.gz |
Typo. Standard list of flag
Add ``c89: '' in front of error messages to be errx()-like.
Diffstat (limited to 'usr.bin/c89')
-rw-r--r-- | usr.bin/c89/c89.1 | 4 | ||||
-rwxr-xr-x | usr.bin/c89/c89.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/c89/c89.1 b/usr.bin/c89/c89.1 index a683df0..90144ac 100644 --- a/usr.bin/c89/c89.1 +++ b/usr.bin/c89/c89.1 @@ -47,13 +47,13 @@ .Ar operand ... .Sh DESCRIPTION This is the name of the C language compiler as required by the -.St -p1003.2 . +.St -p1003.2 standard. .Pp The .Nm compiler accepts the following options: -.Bl -tag -offset indent -width "-D name = value" +.Bl -tag -width indent .It Fl c Suppress the link-edit phase of the compilation, and do not remove any object files that are produced. diff --git a/usr.bin/c89/c89.sh b/usr.bin/c89/c89.sh index 157fbbf..55efd56 100755 --- a/usr.bin/c89/c89.sh +++ b/usr.bin/c89/c89.sh @@ -53,7 +53,7 @@ shift $(($OPTIND - 1)) if [ $# = "0" ] then - echo "Missing operand" 1>&2 + echo "c89: missing operand" 1>&2 usage fi @@ -64,7 +64,7 @@ do shift ;; *) - echo "Invalid operand" 1>&2 + echo "c89: invalid operand" 1>&2 usage ;; esac |