summaryrefslogtreecommitdiffstats
path: root/usr.bin/ctags
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2001-12-03 00:07:59 +0000
committermarkm <markm@FreeBSD.org>2001-12-03 00:07:59 +0000
commita6a5a528626b632d47a921e4e21fdafe8dd9f2b0 (patch)
tree69b4a493d775ac4654a8f0df78203c0d08f91afb /usr.bin/ctags
parentefb1461388597f0cba762d8e262ae8329506e7be (diff)
downloadFreeBSD-src-a6a5a528626b632d47a921e4e21fdafe8dd9f2b0.zip
FreeBSD-src-a6a5a528626b632d47a921e4e21fdafe8dd9f2b0.tar.gz
Use __FBSDID().
Diffstat (limited to 'usr.bin/ctags')
-rw-r--r--usr.bin/ctags/C.c9
-rw-r--r--usr.bin/ctags/ctags.c10
-rw-r--r--usr.bin/ctags/fortran.c8
-rw-r--r--usr.bin/ctags/lisp.c8
-rw-r--r--usr.bin/ctags/print.c8
-rw-r--r--usr.bin/ctags/tree.c8
-rw-r--r--usr.bin/ctags/yacc.c8
7 files changed, 29 insertions, 30 deletions
diff --git a/usr.bin/ctags/C.c b/usr.bin/ctags/C.c
index 55c637e..fcc037a 100644
--- a/usr.bin/ctags/C.c
+++ b/usr.bin/ctags/C.c
@@ -31,14 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
-#if 0
static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94";
-#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
-#endif /* not lint */
#include <limits.h>
#include <stdio.h>
diff --git a/usr.bin/ctags/ctags.c b/usr.bin/ctags/ctags.c
index e99b1ed..3f74332 100644
--- a/usr.bin/ctags/ctags.c
+++ b/usr.bin/ctags/ctags.c
@@ -31,19 +31,19 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1987, 1993, 1994, 1995\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#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>
#include <limits.h>
diff --git a/usr.bin/ctags/fortran.c b/usr.bin/ctags/fortran.c
index 7e8417a..16845e5 100644
--- a/usr.bin/ctags/fortran.c
+++ b/usr.bin/ctags/fortran.c
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#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>
#include <limits.h>
diff --git a/usr.bin/ctags/lisp.c b/usr.bin/ctags/lisp.c
index f8577b0..293149a 100644
--- a/usr.bin/ctags/lisp.c
+++ b/usr.bin/ctags/lisp.c
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#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>
#include <limits.h>
diff --git a/usr.bin/ctags/print.c b/usr.bin/ctags/print.c
index d8d72bf..b27ca54 100644
--- a/usr.bin/ctags/print.c
+++ b/usr.bin/ctags/print.c
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#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>
#include <stdio.h>
diff --git a/usr.bin/ctags/tree.c b/usr.bin/ctags/tree.c
index 9691fc9..2be32a4 100644
--- a/usr.bin/ctags/tree.c
+++ b/usr.bin/ctags/tree.c
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#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>
#include <limits.h>
diff --git a/usr.bin/ctags/yacc.c b/usr.bin/ctags/yacc.c
index da62340..4a0020b 100644
--- a/usr.bin/ctags/yacc.c
+++ b/usr.bin/ctags/yacc.c
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#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>
#include <limits.h>
OpenPOWER on IntegriCloud