diff options
author | mikeh <mikeh@FreeBSD.org> | 2001-08-16 16:16:07 +0000 |
---|---|---|
committer | mikeh <mikeh@FreeBSD.org> | 2001-08-16 16:16:07 +0000 |
commit | 9e512f5897bf319a27ad1b9e77f493ec109fc81e (patch) | |
tree | 0a63fd59452245cd3b90270620e69f9b4443c78a /usr.bin | |
parent | 02116da56f78945e44ba97aaf2f7774a11ebf518 (diff) | |
download | FreeBSD-src-9e512f5897bf319a27ad1b9e77f493ec109fc81e.zip FreeBSD-src-9e512f5897bf319a27ad1b9e77f493ec109fc81e.tar.gz |
Add $FreeBSD$
MFC after: 2 weeks
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ctags/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/ctags/ctags.c | 4 | ||||
-rw-r--r-- | usr.bin/ctags/fortran.c | 4 | ||||
-rw-r--r-- | usr.bin/ctags/lisp.c | 4 | ||||
-rw-r--r-- | usr.bin/ctags/print.c | 4 | ||||
-rw-r--r-- | usr.bin/ctags/tree.c | 4 | ||||
-rw-r--r-- | usr.bin/ctags/yacc.c | 4 |
7 files changed, 25 insertions, 0 deletions
diff --git a/usr.bin/ctags/Makefile b/usr.bin/ctags/Makefile index db595aa..dd18da6 100644 --- a/usr.bin/ctags/Makefile +++ b/usr.bin/ctags/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ PROG= ctags CFLAGS+=-Wall diff --git a/usr.bin/ctags/ctags.c b/usr.bin/ctags/ctags.c index 466f285..606731b 100644 --- a/usr.bin/ctags/ctags.c +++ b/usr.bin/ctags/ctags.c @@ -38,7 +38,11 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)ctags.c 8.4 (Berkeley) 2/7/95"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <err.h> diff --git a/usr.bin/ctags/fortran.c b/usr.bin/ctags/fortran.c index d4b2723..fbb3ceb 100644 --- a/usr.bin/ctags/fortran.c +++ b/usr.bin/ctags/fortran.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)fortran.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <ctype.h> diff --git a/usr.bin/ctags/lisp.c b/usr.bin/ctags/lisp.c index f86e218..f8577b0 100644 --- a/usr.bin/ctags/lisp.c +++ b/usr.bin/ctags/lisp.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)lisp.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <ctype.h> diff --git a/usr.bin/ctags/print.c b/usr.bin/ctags/print.c index 65d6737..4e2bc4f 100644 --- a/usr.bin/ctags/print.c +++ b/usr.bin/ctags/print.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)print.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <limits.h> diff --git a/usr.bin/ctags/tree.c b/usr.bin/ctags/tree.c index 8e1ec22..586930e 100644 --- a/usr.bin/ctags/tree.c +++ b/usr.bin/ctags/tree.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)tree.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <err.h> diff --git a/usr.bin/ctags/yacc.c b/usr.bin/ctags/yacc.c index 7a27a6e..da62340 100644 --- a/usr.bin/ctags/yacc.c +++ b/usr.bin/ctags/yacc.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)yacc.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <ctype.h> |