Typo. Standard list of flag

Add ``c89: '' in front of error messages to be errx()-like.
This commit is contained in:
Philippe Charnier 1999-12-05 20:01:28 +00:00
parent 81c8c7a454
commit 39cfe41b7c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54159
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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