summaryrefslogtreecommitdiff
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2008-12-31 22:57:14 +0000
committerKen Smith <kensmith@FreeBSD.org>2008-12-31 22:57:14 +0000
commit8d4eb975d2e49f56d057a19aac09bcb92b3e71f7 (patch)
tree1b808490e2ba26bfe983f82bd41a2b36a6127322 /usr.bin/m4
parenta1fc2b0c89a1dd2ca090ae990ab45b21363ab76e (diff)
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/Makefile2
-rw-r--r--usr.bin/m4/TEST/math.m42
-rw-r--r--usr.bin/m4/eval.c2
-rw-r--r--usr.bin/m4/expr.c2
-rw-r--r--usr.bin/m4/extern.h2
-rw-r--r--usr.bin/m4/gnum4.c2
-rw-r--r--usr.bin/m4/look.c2
-rw-r--r--usr.bin/m4/m4.12
-rw-r--r--usr.bin/m4/main.c2
-rw-r--r--usr.bin/m4/mdef.h2
-rw-r--r--usr.bin/m4/misc.c2
-rw-r--r--usr.bin/m4/pathnames.h2
-rw-r--r--usr.bin/m4/stdd.h2
-rw-r--r--usr.bin/m4/trace.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile
index 702b3f3d2444..caf35babf0d4 100644
--- a/usr.bin/m4/Makefile
+++ b/usr.bin/m4/Makefile
@@ -1,5 +1,5 @@
# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/m4/Makefile,v 1.7.18.1 2008/11/25 02:59:29 kensmith Exp $
# -DEXTENDED
# if you want the paste & spaste macros.
diff --git a/usr.bin/m4/TEST/math.m4 b/usr.bin/m4/TEST/math.m4
index 0262af66e253..9af120ad0e16 100644
--- a/usr.bin/m4/TEST/math.m4
+++ b/usr.bin/m4/TEST/math.m4
@@ -1,4 +1,4 @@
-dnl $FreeBSD$
+dnl $FreeBSD: src/usr.bin/m4/TEST/math.m4,v 1.1.26.1 2008/11/25 02:59:29 kensmith Exp $
dnl A regression test for m4 C operators (ksb,petef)
dnl If you think you have a short-circuiting m4, run us m4 -DSHORCIRCUIT=yes
dnl
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c
index 060ce03661d5..517da248d6fc 100644
--- a/usr.bin/m4/eval.c
+++ b/usr.bin/m4/eval.c
@@ -48,7 +48,7 @@ static char rcsid[] = "$OpenBSD: eval.c,v 1.44 2002/04/26 16:15:16 espie Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/eval.c,v 1.22.26.1 2008/11/25 02:59:29 kensmith Exp $");
/*
* eval.c
diff --git a/usr.bin/m4/expr.c b/usr.bin/m4/expr.c
index 2c0284b1a784..34ff4d661187 100644
--- a/usr.bin/m4/expr.c
+++ b/usr.bin/m4/expr.c
@@ -48,7 +48,7 @@ static char rcsid[] = "$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/expr.c,v 1.14.26.1 2008/11/25 02:59:29 kensmith Exp $");
#include <sys/types.h>
#include <ctype.h>
diff --git a/usr.bin/m4/extern.h b/usr.bin/m4/extern.h
index e96870b58555..3c8a82a0f3e2 100644
--- a/usr.bin/m4/extern.h
+++ b/usr.bin/m4/extern.h
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)extern.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/m4/extern.h,v 1.12.26.1 2008/11/25 02:59:29 kensmith Exp $
*/
/* eval.c */
diff --git a/usr.bin/m4/gnum4.c b/usr.bin/m4/gnum4.c
index f4cfa7786017..f14c3a9cf8c1 100644
--- a/usr.bin/m4/gnum4.c
+++ b/usr.bin/m4/gnum4.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/gnum4.c,v 1.10.6.1 2008/11/25 02:59:29 kensmith Exp $");
/*
* functions needed to support gnu-m4 extensions, including a fake freezing
diff --git a/usr.bin/m4/look.c b/usr.bin/m4/look.c
index bafaa2ad5a43..b700db34119c 100644
--- a/usr.bin/m4/look.c
+++ b/usr.bin/m4/look.c
@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)look.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/look.c,v 1.7.32.1 2008/11/25 02:59:29 kensmith Exp $");
/*
* look.c
diff --git a/usr.bin/m4/m4.1 b/usr.bin/m4/m4.1
index 0c492a98ca3c..4330acbf022e 100644
--- a/usr.bin/m4/m4.1
+++ b/usr.bin/m4/m4.1
@@ -1,5 +1,5 @@
.\" @(#) $OpenBSD: m4.1,v 1.24 2002/04/18 18:57:23 espie Exp $
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/m4/m4.1,v 1.27.18.1 2008/11/25 02:59:29 kensmith Exp $
.\"
.Dd July 3, 2004
.Dt M4 1
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c
index 847a37288e0c..70c9063171ab 100644
--- a/usr.bin/m4/main.c
+++ b/usr.bin/m4/main.c
@@ -54,7 +54,7 @@ static char rcsid[] = "$OpenBSD: main.c,v 1.53 2002/04/26 16:15:16 espie Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/main.c,v 1.26.26.1 2008/11/25 02:59:29 kensmith Exp $");
/*
* main.c
diff --git a/usr.bin/m4/mdef.h b/usr.bin/m4/mdef.h
index e3e48e272001..0303baad3be8 100644
--- a/usr.bin/m4/mdef.h
+++ b/usr.bin/m4/mdef.h
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)mdef.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/m4/mdef.h,v 1.10.32.1 2008/11/25 02:59:29 kensmith Exp $
*/
#define MACRTYPE 1
diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c
index b5632e820fef..0fb3e5535914 100644
--- a/usr.bin/m4/misc.c
+++ b/usr.bin/m4/misc.c
@@ -48,7 +48,7 @@ static char rcsid[] = "$OpenBSD: misc.c,v 1.27 2002/04/26 16:15:16 espie Exp $";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/misc.c,v 1.15.32.1 2008/11/25 02:59:29 kensmith Exp $");
#include <sys/types.h>
#include <errno.h>
diff --git a/usr.bin/m4/pathnames.h b/usr.bin/m4/pathnames.h
index 94e8164f07ab..5e6f23a9297a 100644
--- a/usr.bin/m4/pathnames.h
+++ b/usr.bin/m4/pathnames.h
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)pathnames.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/m4/pathnames.h,v 1.4.32.1 2008/11/25 02:59:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/m4/stdd.h b/usr.bin/m4/stdd.h
index 34939854b97f..9c2b2c0f2dcc 100644
--- a/usr.bin/m4/stdd.h
+++ b/usr.bin/m4/stdd.h
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)stdd.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/m4/stdd.h,v 1.4.32.1 2008/11/25 02:59:29 kensmith Exp $
*/
/*
diff --git a/usr.bin/m4/trace.c b/usr.bin/m4/trace.c
index a42aea044271..e2f3eec9dd32 100644
--- a/usr.bin/m4/trace.c
+++ b/usr.bin/m4/trace.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/m4/trace.c,v 1.7.32.1 2008/11/25 02:59:29 kensmith Exp $");
#include <sys/types.h>
#include <stddef.h>