diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2004-05-25 15:47:51 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2004-05-25 15:47:51 +0000 |
| commit | a6a2310060e10e1d8e310755e3ccc34569954a55 (patch) | |
| tree | 56e049af78c49a1332225b5cf25ff02b77d66085 /usr.bin/m4 | |
| parent | 71f42d7e75897c23b46da53de8db036f6bd274d0 (diff) | |
Diffstat (limited to 'usr.bin/m4')
| -rw-r--r-- | usr.bin/m4/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/m4/eval.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/expr.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/extern.h | 2 | ||||
| -rw-r--r-- | usr.bin/m4/gnum4.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/look.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/m4.1 | 2 | ||||
| -rw-r--r-- | usr.bin/m4/main.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/mdef.h | 2 | ||||
| -rw-r--r-- | usr.bin/m4/misc.c | 2 | ||||
| -rw-r--r-- | usr.bin/m4/pathnames.h | 2 | ||||
| -rw-r--r-- | usr.bin/m4/stdd.h | 2 | ||||
| -rw-r--r-- | usr.bin/m4/trace.c | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile index 46fb32d2aeb1..64e63155a2b2 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.2.12.1 2002/07/15 02:06:15 jmallett Exp $ # -DEXTENDED # if you want the paste & spaste macros. diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index 03fdf3126b9e..de8bc4a52d65 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.10.2.5 2002/07/15 02:06:15 jmallett Exp $"); /* * eval.c diff --git a/usr.bin/m4/expr.c b/usr.bin/m4/expr.c index 98f0a3b09a7c..7964872b8a92 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.3.12.1 2002/07/15 02:06:15 jmallett Exp $"); #include <sys/types.h> #include <ctype.h> diff --git a/usr.bin/m4/extern.h b/usr.bin/m4/extern.h index 30d3b95334c4..467bd81e279e 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.3.6.3 2002/07/15 02:06:15 jmallett Exp $ */ /* eval.c */ diff --git a/usr.bin/m4/gnum4.c b/usr.bin/m4/gnum4.c index 813b8af1ecea..e294ead4bb64 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.7.2.1 2002/07/15 02:06:15 jmallett 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 2a3e5c7b83eb..9334960fdbb1 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.2.12.1 2002/07/15 02:06:15 jmallett Exp $"); /* * look.c diff --git a/usr.bin/m4/m4.1 b/usr.bin/m4/m4.1 index 95d2e4afe014..701d42e08882 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.10.2.9 2003/04/26 14:29:55 schweikh Exp $ .\" .Dd April 17, 2002 .Dt M4 1 diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c index 0218924189c5..4b31e2002cf3 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.6.2.6 2002/07/15 02:06:15 jmallett Exp $"); /* * main.c diff --git a/usr.bin/m4/mdef.h b/usr.bin/m4/mdef.h index 31989181778b..2b02e219c438 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.3.12.2 2002/07/15 02:06:15 jmallett Exp $ */ #define MACRTYPE 1 diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c index 0eba9aa49919..bdcdc9e430c8 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.5.2.4 2002/07/15 02:06:15 jmallett Exp $"); #include <sys/types.h> #include <errno.h> diff --git a/usr.bin/m4/pathnames.h b/usr.bin/m4/pathnames.h index 94e8164f07ab..698631d27524 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.1.1.1.14.2 2002/07/15 02:06:15 jmallett Exp $ */ /* diff --git a/usr.bin/m4/stdd.h b/usr.bin/m4/stdd.h index 733aa5973d8a..8fc8661ee38f 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.2.12.1 2002/07/15 02:06:15 jmallett Exp $ */ /* diff --git a/usr.bin/m4/trace.c b/usr.bin/m4/trace.c index 610ad3cc7a70..d0a4ac051a99 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.6.2.1 2002/07/15 02:06:15 jmallett Exp $"); #include <sys/types.h> #include <stddef.h> |
