summaryrefslogtreecommitdiffstats
path: root/usr.bin/m4/main.c
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2001-03-02 00:25:24 +0000
committeraaron <aaron@openbsd.org>2001-03-02 00:25:24 +0000
commitf1de3ba3c8e03fc213c9147033c7652b0cea0fd6 (patch)
treea587d88e895b7381cde6513dbaa686e27ec54f49 /usr.bin/m4/main.c
parentWrap KS_Cmd_KbdReset in #ifdef __i386__ for now; politely pointed to this by (diff)
downloadwireguard-openbsd-f1de3ba3c8e03fc213c9147033c7652b0cea0fd6.tar.xz
wireguard-openbsd-f1de3ba3c8e03fc213c9147033c7652b0cea0fd6.zip
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/m4/main.c')
-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();
}