summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-03-02 00:25:25 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-03-02 00:25:25 +0000
commitb7a5667fb5378bdcd49ac2bce56e9d15c1decd66 (patch)
tree459bbf4b01982c0a264d1a0a8cb9454a5db10cfb /usr.bin
parent6318382a23bb79ef36368828645ef43aeb72068d (diff)
Mark -o option with XXX (we may want to implement it someday, but currently it
exists only for compatibility reasons); espie@ ok. This issue was brought to my attention by mpech@prosoft.org.lv
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/m4/main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c
index 45ce7d2bd92..b1e56a32769 100644
--- a/usr.bin/m4/main.c
+++ b/usr.bin/m4/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.37 2001/02/05 01:57:27 deraadt Exp $ */
+/* $OpenBSD: main.c,v 1.38 2001/03/02 00:25:24 aaron Exp $ */
/* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */
/*-
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: main.c,v 1.37 2001/02/05 01:57:27 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.38 2001/03/02 00:25:24 aaron Exp $";
#endif
#endif /* not lint */
@@ -213,7 +213,9 @@ main(argc,argv)
case 'g':
mimic_gnu = 1;
break;
- case 'o': /* specific output */
+ case 'o':
+ /* XXX accept -o for compatibility */
+ break;
case '?':
usage();
}