summaryrefslogtreecommitdiff
path: root/usr.bin/bc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-09-26 19:05:57 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-09-26 19:05:57 +0000
commit8b5453d339f01a85f3c181e576dd4a927ac103b9 (patch)
tree43715f515279ae65e6a901e1a221eadaaf36023f /usr.bin/bc
parent4951586d30b0bb5fc77e35e81876eedab4e95aff (diff)
make usage match man page
Diffstat (limited to 'usr.bin/bc')
-rw-r--r--usr.bin/bc/bc.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y
index 28f645c6696..b251309b2b9 100644
--- a/usr.bin/bc/bc.y
+++ b/usr.bin/bc/bc.y
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: bc.y,v 1.3 2003/09/26 19:00:38 deraadt Exp $ */
+/* $OpenBSD: bc.y,v 1.4 2003/09/26 19:05:56 deraadt Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -31,7 +31,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bc.y,v 1.3 2003/09/26 19:00:38 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: bc.y,v 1.4 2003/09/26 19:05:56 deraadt Exp $";
#endif /* not lint */
#include <ctype.h>
@@ -750,7 +750,7 @@ init(void)
static __dead void
usage(void)
{
- fprintf(stderr, "%s: usage: [-c] [-l] [file ...]\n", __progname);
+ fprintf(stderr, "%s: usage: [-cl] [file ...]\n", __progname);
exit(1);
}