aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/find
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-04-01 22:56:56 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-04-01 22:56:56 +0000
commit3077469e0c95a87d71f364154ebacb673618f5ff (patch)
tree3dd9c192f62b017eaef267de0a35c354d633b60c /usr.bin/find
parent3fa1df42da43130d5ee1abcd84e292604921997f (diff)
downloadsrc-3077469e0c95a87d71f364154ebacb673618f5ff.tar.gz
src-3077469e0c95a87d71f364154ebacb673618f5ff.zip
Notes
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/find.c4
-rw-r--r--usr.bin/find/function.c5
-rw-r--r--usr.bin/find/ls.c5
-rw-r--r--usr.bin/find/main.c5
-rw-r--r--usr.bin/find/misc.c4
-rw-r--r--usr.bin/find/operator.c5
-rw-r--r--usr.bin/find/option.c4
7 files changed, 14 insertions, 18 deletions
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index 593ab9b525da..f100f88479b9 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -38,10 +38,10 @@
#if 0
static char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94";
#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index bff7af5a678a..81b3475c99f2 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -37,11 +37,10 @@
#ifndef lint
#if 0
static const char sccsid[] = "@(#)function.c 8.10 (Berkeley) 5/4/95";
-#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/ucred.h>
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c
index a7ccd29b044c..bb7b97ece3a0 100644
--- a/usr.bin/find/ls.c
+++ b/usr.bin/find/ls.c
@@ -34,11 +34,10 @@
#ifndef lint
#if 0
static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/6/93";
-#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index d7ff7a55565e..0ffc178491b4 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -43,11 +43,10 @@ char copyright[] =
#ifndef lint
#if 0
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
-#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/misc.c b/usr.bin/find/misc.c
index 8c0dfd18dc5c..60792cbf20cf 100644
--- a/usr.bin/find/misc.c
+++ b/usr.bin/find/misc.c
@@ -38,10 +38,10 @@
#if 0
static char sccsid[] = "@(#)misc.c 8.2 (Berkeley) 4/1/94";
#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index cc7b45b68210..ce3925ab153d 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -37,11 +37,10 @@
#ifndef lint
#if 0
static char sccsid[] = "@(#)operator.c 8.1 (Berkeley) 6/6/93";
-#else
-static const char rcsid[] =
- "$FreeBSD$";
#endif
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index d6716e153e31..ae105d9445f0 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -38,9 +38,9 @@
/*
static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
*/
-static const char rcsid[] =
- "$FreeBSD$";
#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/stat.h>