aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/c89
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>1999-12-05 20:01:28 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>1999-12-05 20:01:28 +0000
commit39cfe41b7cd1180391257e21951d8399b8584ab7 (patch)
tree298b3dc1af380bc956d002a8fb903df204011caa /usr.bin/c89
parent81c8c7a4545fe60ac4a241e750831de3be5b4837 (diff)
downloadsrc-39cfe41b7cd1180391257e21951d8399b8584ab7.tar.gz
src-39cfe41b7cd1180391257e21951d8399b8584ab7.zip
Typo. Standard list of flag
Add ``c89: '' in front of error messages to be errx()-like.
Notes
Notes: svn path=/head/; revision=54159
Diffstat (limited to 'usr.bin/c89')
-rw-r--r--usr.bin/c89/c89.14
-rwxr-xr-xusr.bin/c89/c89.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/c89/c89.1 b/usr.bin/c89/c89.1
index a683df08f43d..90144acb2398 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 157fbbff884a..55efd56c6b9f 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