diff options
Diffstat (limited to 'usr.bin/indent')
| -rw-r--r-- | usr.bin/indent/README | 2 | ||||
| -rw-r--r-- | usr.bin/indent/args.c | 2 | ||||
| -rw-r--r-- | usr.bin/indent/indent.1 | 2 | ||||
| -rw-r--r-- | usr.bin/indent/indent.c | 2 | ||||
| -rw-r--r-- | usr.bin/indent/indent.h | 2 | ||||
| -rw-r--r-- | usr.bin/indent/indent_codes.h | 2 | ||||
| -rw-r--r-- | usr.bin/indent/indent_globs.h | 2 | ||||
| -rw-r--r-- | usr.bin/indent/io.c | 2 | ||||
| -rw-r--r-- | usr.bin/indent/lexi.c | 2 | ||||
| -rw-r--r-- | usr.bin/indent/parse.c | 2 | ||||
| -rw-r--r-- | usr.bin/indent/pr_comment.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/indent/README b/usr.bin/indent/README index 03d5d3d8d39e..a796b4614647 100644 --- a/usr.bin/indent/README +++ b/usr.bin/indent/README @@ -1,5 +1,5 @@ - $FreeBSD$ + $FreeBSD: src/usr.bin/indent/README,v 1.2 2002/10/16 13:58:39 charnier Exp $ This is the C indenter, it originally came from the University of Illinois via some distribution tape for PDP-11 Unix. It has subsequently been diff --git a/usr.bin/indent/args.c b/usr.bin/indent/args.c index eb9396060726..f6350c039264 100644 --- a/usr.bin/indent/args.c +++ b/usr.bin/indent/args.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)args.c 8.1 (Berkeley) 6/6/93"; #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/args.c,v 1.14 2004/06/27 10:58:37 schweikh Exp $"); /* * Argument scanning and profile reading code. Default parameters are set diff --git a/usr.bin/indent/indent.1 b/usr.bin/indent/indent.1 index f04e13d5f426..d006832a923f 100644 --- a/usr.bin/indent/indent.1 +++ b/usr.bin/indent/indent.1 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)indent.1 8.1 (Berkeley) 7/1/93 -.\" $FreeBSD$ +.\" $FreeBSD: src/usr.bin/indent/indent.1,v 1.22.2.2 2005/08/18 15:22:09 keramida Exp $ .\" .Dd June 29, 2004 .Dt INDENT 1 diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c index f91043f7d3b1..911080d67658 100644 --- a/usr.bin/indent/indent.c +++ b/usr.bin/indent/indent.c @@ -48,7 +48,7 @@ static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93"; #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/indent.c,v 1.23 2004/06/27 10:58:37 schweikh Exp $"); #include <sys/param.h> #include <err.h> diff --git a/usr.bin/indent/indent.h b/usr.bin/indent/indent.h index 4c52bf8370e4..ac40f01b0484 100644 --- a/usr.bin/indent/indent.h +++ b/usr.bin/indent/indent.h @@ -25,7 +25,7 @@ */ #if 0 -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/indent.h,v 1.2 2002/03/30 17:10:20 dwmalone Exp $"); #endif void addkey(char *, int); diff --git a/usr.bin/indent/indent_codes.h b/usr.bin/indent/indent_codes.h index e1ff294e2576..008bf2b41a9f 100644 --- a/usr.bin/indent/indent_codes.h +++ b/usr.bin/indent/indent_codes.h @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)indent_codes.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/indent/indent_codes.h,v 1.2 2000/12/09 09:52:51 obrien Exp $ */ #define newline 1 diff --git a/usr.bin/indent/indent_globs.h b/usr.bin/indent/indent_globs.h index 010b3a3d6794..781718de9ae4 100644 --- a/usr.bin/indent/indent_globs.h +++ b/usr.bin/indent/indent_globs.h @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)indent_globs.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/indent/indent_globs.h,v 1.10 2004/06/27 10:58:37 schweikh Exp $ */ #define BACKSLASH '\\' diff --git a/usr.bin/indent/io.c b/usr.bin/indent/io.c index 45eb6c2d5f3b..f818aed47f63 100644 --- a/usr.bin/indent/io.c +++ b/usr.bin/indent/io.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93"; #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/io.c,v 1.14 2004/06/27 10:58:37 schweikh Exp $"); #include <ctype.h> #include <err.h> diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c index 60fc1aee9eea..15b59ef5b822 100644 --- a/usr.bin/indent/lexi.c +++ b/usr.bin/indent/lexi.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/lexi.c,v 1.18.2.1 2005/12/25 16:25:10 dds Exp $"); /* * Here we have the token scanner for indent. It scans off one token and puts diff --git a/usr.bin/indent/parse.c b/usr.bin/indent/parse.c index 65d9a6bb8c47..7720ff147acf 100644 --- a/usr.bin/indent/parse.c +++ b/usr.bin/indent/parse.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93"; #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/parse.c,v 1.10 2003/06/15 09:28:17 charnier Exp $"); #include <stdio.h> #include "indent_globs.h" diff --git a/usr.bin/indent/pr_comment.c b/usr.bin/indent/pr_comment.c index 9524bf404f19..ad7fe2e7f607 100644 --- a/usr.bin/indent/pr_comment.c +++ b/usr.bin/indent/pr_comment.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)pr_comment.c 8.1 (Berkeley) 6/6/93"; #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/indent/pr_comment.c,v 1.8 2003/06/15 09:28:17 charnier Exp $"); #include <err.h> #include <stdio.h> |
