aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/gprof
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-06-30 05:25:07 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-06-30 05:25:07 +0000
commite026a48c34d396fe7d0e382673a69bc047c0bfca (patch)
tree41763f513f184b022b2875b747c2d1e83d4ed74f /usr.bin/gprof
parent37a6b453c4a040bb780d670e1374536b595f452b (diff)
downloadsrc-e026a48c34d396fe7d0e382673a69bc047c0bfca.tar.gz
src-e026a48c34d396fe7d0e382673a69bc047c0bfca.zip
Consistently use FBSDID
Notes
Notes: svn path=/head/; revision=99112
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r--usr.bin/gprof/alpha.c3
-rw-r--r--usr.bin/gprof/arcs.c4
-rw-r--r--usr.bin/gprof/dfn.c2
-rw-r--r--usr.bin/gprof/gprof.c4
-rw-r--r--usr.bin/gprof/ia64.c4
-rw-r--r--usr.bin/gprof/kernel.c6
-rw-r--r--usr.bin/gprof/lookup.c2
-rw-r--r--usr.bin/gprof/printgprof.c4
-rw-r--r--usr.bin/gprof/printlist.c4
9 files changed, 20 insertions, 13 deletions
diff --git a/usr.bin/gprof/alpha.c b/usr.bin/gprof/alpha.c
index 6a474086a312..c35cd63a5f2e 100644
--- a/usr.bin/gprof/alpha.c
+++ b/usr.bin/gprof/alpha.c
@@ -1,3 +1,6 @@
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "gprof.h"
/*
diff --git a/usr.bin/gprof/arcs.c b/usr.bin/gprof/arcs.c
index 390556352ef9..b3bdfbabf333 100644
--- a/usr.bin/gprof/arcs.c
+++ b/usr.bin/gprof/arcs.c
@@ -35,9 +35,9 @@
#if 0
static char sccsid[] = "@(#)arcs.c 8.1 (Berkeley) 6/6/93";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/dfn.c b/usr.bin/gprof/dfn.c
index 8bea2c24de3e..9d2a08ae265e 100644
--- a/usr.bin/gprof/dfn.c
+++ b/usr.bin/gprof/dfn.c
@@ -38,6 +38,8 @@ static char sccsid[] = "@(#)dfn.c 8.1 (Berkeley) 6/6/93";
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <stdio.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c
index 400d9744a326..745da7641adb 100644
--- a/usr.bin/gprof/gprof.c
+++ b/usr.bin/gprof/gprof.c
@@ -41,9 +41,9 @@ static const char copyright[] =
#if 0
static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <err.h>
#include <limits.h>
diff --git a/usr.bin/gprof/ia64.c b/usr.bin/gprof/ia64.c
index 967feda3511b..c35cd63a5f2e 100644
--- a/usr.bin/gprof/ia64.c
+++ b/usr.bin/gprof/ia64.c
@@ -1,4 +1,6 @@
-/* $FreeBSD$ */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "gprof.h"
/*
diff --git a/usr.bin/gprof/kernel.c b/usr.bin/gprof/kernel.c
index c8df0d0a5c31..fc140877909c 100644
--- a/usr.bin/gprof/kernel.c
+++ b/usr.bin/gprof/kernel.c
@@ -1,7 +1,5 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/linker.h>
diff --git a/usr.bin/gprof/lookup.c b/usr.bin/gprof/lookup.c
index 9badc6c6d893..3c5f2b02cd01 100644
--- a/usr.bin/gprof/lookup.c
+++ b/usr.bin/gprof/lookup.c
@@ -38,6 +38,8 @@ static char sccsid[] = "@(#)lookup.c 8.1 (Berkeley) 6/6/93";
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include "gprof.h"
diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c
index d9f0d58a73fd..2440c8c030b4 100644
--- a/usr.bin/gprof/printgprof.c
+++ b/usr.bin/gprof/printgprof.c
@@ -35,9 +35,9 @@
#if 0
static char sccsid[] = "@(#)printgprof.c 8.1 (Berkeley) 6/6/93";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <err.h>
#include "gprof.h"
diff --git a/usr.bin/gprof/printlist.c b/usr.bin/gprof/printlist.c
index c77b19fa008b..74be0e49c08b 100644
--- a/usr.bin/gprof/printlist.c
+++ b/usr.bin/gprof/printlist.c
@@ -35,9 +35,9 @@
#if 0
static char sccsid[] = "@(#)printlist.c 8.1 (Berkeley) 6/6/93";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <err.h>
#include "gprof.h"