diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2002-10-08 05:39:08 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2002-10-08 05:39:08 +0000 |
commit | e1b05e3a6cd90b0bf91b47aeff71da2a9d048a9d (patch) | |
tree | d57c49002f2656171c2f00359a26c3e3f414b6ad /usr.bin/sed | |
parent | 7d5bc6320988857ad6ae9fe1d002ad6d8a7af0dd (diff) |
Diffstat (limited to 'usr.bin/sed')
-rw-r--r-- | usr.bin/sed/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/sed/TEST/hanoi.sed | 2 | ||||
-rw-r--r-- | usr.bin/sed/compile.c | 2 | ||||
-rw-r--r-- | usr.bin/sed/extern.h | 2 | ||||
-rw-r--r-- | usr.bin/sed/main.c | 2 | ||||
-rw-r--r-- | usr.bin/sed/misc.c | 2 | ||||
-rw-r--r-- | usr.bin/sed/process.c | 2 | ||||
-rw-r--r-- | usr.bin/sed/sed.1 | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile index 9d9886f3688c..bafe5d835ed3 100644 --- a/usr.bin/sed/Makefile +++ b/usr.bin/sed/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/Makefile,v 1.2.6.1 2002/06/26 16:49:28 obrien Exp $ PROG= sed SRCS= compile.c main.c misc.c process.c diff --git a/usr.bin/sed/TEST/hanoi.sed b/usr.bin/sed/TEST/hanoi.sed index 6a45deaa94c7..e9a81f8f22b3 100644 --- a/usr.bin/sed/TEST/hanoi.sed +++ b/usr.bin/sed/TEST/hanoi.sed @@ -1,7 +1,7 @@ # Towers of Hanoi in sed. # # @(#)hanoi.sed 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/TEST/hanoi.sed,v 1.1.1.1.14.1 2002/07/17 09:35:56 tjr Exp $ # # # Ex: diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c index a97e01d8b296..ee6aa3bf645f 100644 --- a/usr.bin/sed/compile.c +++ b/usr.bin/sed/compile.c @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/compile.c,v 1.13.2.8 2002/08/17 05:47:06 tjr Exp $"); #ifndef lint static const char sccsid[] = "@(#)compile.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/extern.h b/usr.bin/sed/extern.h index df49f7e36ee0..04ae6cb60b74 100644 --- a/usr.bin/sed/extern.h +++ b/usr.bin/sed/extern.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/sed/extern.h,v 1.3.6.4 2002/07/17 09:35:56 tjr Exp $ */ extern struct s_command *prog; diff --git a/usr.bin/sed/main.c b/usr.bin/sed/main.c index 2ccc988be6e5..5caa52cdf0fa 100644 --- a/usr.bin/sed/main.c +++ b/usr.bin/sed/main.c @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/main.c,v 1.9.2.7 2002/08/06 10:03:29 fanf Exp $"); #ifndef lint static const char copyright[] = diff --git a/usr.bin/sed/misc.c b/usr.bin/sed/misc.c index e04eae962da8..a81fde01d25d 100644 --- a/usr.bin/sed/misc.c +++ b/usr.bin/sed/misc.c @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/misc.c,v 1.3.2.2 2002/07/17 09:35:56 tjr Exp $"); #ifndef lint static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index 94c24e9f0352..4df31efac120 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/process.c,v 1.10.2.9 2002/08/17 05:47:06 tjr Exp $"); #ifndef lint static const char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94"; diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index 2687cba54273..93f114090f4a 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sed.1 8.2 (Berkeley) 12/30/93 -.\" $FreeBSD$ +.\" $FreeBSD: src/usr.bin/sed/sed.1,v 1.9.2.9 2002/06/27 13:03:33 jmallett Exp $ .\" .Dd May 7, 2002 .Dt SED 1 |