aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-05-03 14:48:21 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-05-03 14:48:21 +0000
commit90432ef88ddf6a842576faab9d2eb9cc98823ffa (patch)
treebbe35835d5061906eba621e9b30fb3e412b644b7 /usr.bin/m4
parentaf2c59f62e4454f6634fb93d953426fdcfdff044 (diff)
Notes
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/eval.c12
-rw-r--r--usr.bin/m4/expr.c12
-rw-r--r--usr.bin/m4/look.c8
-rw-r--r--usr.bin/m4/main.c20
-rw-r--r--usr.bin/m4/misc.c12
-rw-r--r--usr.bin/m4/trace.c1
6 files changed, 52 insertions, 13 deletions
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c
index 0c803df7dd112..03fdf3126b9e4 100644
--- a/usr.bin/m4/eval.c
+++ b/usr.bin/m4/eval.c
@@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+#if 0
+static char sccsid[] = "@(#)eval.c 8.2 (Berkeley) 4/27/95";
+#else
+#if 0
+static char rcsid[] = "$OpenBSD: eval.c,v 1.44 2002/04/26 16:15:16 espie Exp $";
+#endif
+#endif
+#endif /* not lint */
+
#include <sys/cdefs.h>
-__SCCSID("@(#)eval.c 8.2 (Berkeley) 4/27/95");
-__RCSID_SOURCE("$OpenBSD: eval.c,v 1.44 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*
diff --git a/usr.bin/m4/expr.c b/usr.bin/m4/expr.c
index eb52b3a2f2ab7..997a5a6d7cccd 100644
--- a/usr.bin/m4/expr.c
+++ b/usr.bin/m4/expr.c
@@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+#if 0
+static char sccsid[] = "@(#)expr.c 8.2 (Berkeley) 4/29/95";
+#else
+#if 0
+static char rcsid[] = "$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $";
+#endif
+#endif
+#endif /* not lint */
+
#include <sys/cdefs.h>
-__SCCSID("@(#)expr.c 8.2 (Berkeley) 4/29/95");
-__RCSID_SOURCE("$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>
diff --git a/usr.bin/m4/look.c b/usr.bin/m4/look.c
index ed9039c3cf38e..2a3e5c7b83eb1 100644
--- a/usr.bin/m4/look.c
+++ b/usr.bin/m4/look.c
@@ -36,9 +36,13 @@
* SUCH DAMAGE.
*/
+#if 0
+#ifndef lint
+static char sccsid[] = "@(#)look.c 8.1 (Berkeley) 6/6/93";
+#endif /* not lint */
+#endif
+
#include <sys/cdefs.h>
-__SCCSID("@(#)look.c 8.1 (Berkeley) 6/6/93");
-__RCSID_SOURCE("$OpenBSD: look.c,v 1.10 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c
index ca01cb07d9e0f..18dccb4a8ef06 100644
--- a/usr.bin/m4/main.c
+++ b/usr.bin/m4/main.c
@@ -37,11 +37,23 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char copyright[] =
+"@(#) Copyright (c) 1989, 1993\n\
+ The Regents of the University of California. All rights reserved.\n";
+#endif /* not lint */
+
+#ifndef lint
+#if 0
+static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
+#else
+#if 0
+static char rcsid[] = "$OpenBSD: main.c,v 1.53 2002/04/26 16:15:16 espie Exp $";
+#endif
+#endif
+#endif /* not lint */
+
#include <sys/cdefs.h>
-__COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
- The Regents of the University of California. All rights reserved.\n");
-__SCCSID("@(#)main.c 8.1 (Berkeley) 6/6/93");
-__RCSID_SOURCE("$OpenBSD: main.c,v 1.53 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
/*
diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c
index fe1e3ed01c045..dd4941a315401 100644
--- a/usr.bin/m4/misc.c
+++ b/usr.bin/m4/misc.c
@@ -37,9 +37,17 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+#if 0
+static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
+#else
+#if 0
+static char rcsid[] = "$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $";
+#endif
+#endif
+#endif /* not lint */
+
#include <sys/cdefs.h>
-__SCCSID("@(#)misc.c 8.1 (Berkeley) 6/6/93");
-__RCSID_SOURCE("$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>
diff --git a/usr.bin/m4/trace.c b/usr.bin/m4/trace.c
index 7765a4a5b584c..a9f66d2722ae2 100644
--- a/usr.bin/m4/trace.c
+++ b/usr.bin/m4/trace.c
@@ -25,7 +25,6 @@
*/
#include <sys/cdefs.h>
-__RCSID_SOURCE("$OpenBSD: trace.c,v 1.6 2002/04/26 16:15:16 espie Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>