aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ctags
diff options
context:
space:
mode:
authorMike Heffner <mikeh@FreeBSD.org>2001-08-16 16:16:07 +0000
committerMike Heffner <mikeh@FreeBSD.org>2001-08-16 16:16:07 +0000
commit1ac49cd8969b2de6ad1d19f3ca443b1cd6c1ce73 (patch)
tree0a63fd59452245cd3b90270620e69f9b4443c78a /usr.bin/ctags
parent911c2be00bdc293c95d00241f4c4b2292db313ac (diff)
downloadsrc-1ac49cd8969b2de6ad1d19f3ca443b1cd6c1ce73.tar.gz
src-1ac49cd8969b2de6ad1d19f3ca443b1cd6c1ce73.zip
Add $FreeBSD$
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=81782
Diffstat (limited to 'usr.bin/ctags')
-rw-r--r--usr.bin/ctags/Makefile1
-rw-r--r--usr.bin/ctags/ctags.c4
-rw-r--r--usr.bin/ctags/fortran.c4
-rw-r--r--usr.bin/ctags/lisp.c4
-rw-r--r--usr.bin/ctags/print.c4
-rw-r--r--usr.bin/ctags/tree.c4
-rw-r--r--usr.bin/ctags/yacc.c4
7 files changed, 25 insertions, 0 deletions
diff --git a/usr.bin/ctags/Makefile b/usr.bin/ctags/Makefile
index db595aa38b74..dd18da6e6fa9 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 466f285903da..606731b7bf40 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 d4b2723fe239..fbb3ceb14844 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 f86e218f44f2..f8577b05f336 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 65d6737fc2da..4e2bc4f72d35 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 8e1ec22dd1b0..586930ed980b 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 7a27a6e47a68..da6234014db1 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>