diff options
-rw-r--r-- | usr.bin/find/find.c | 4 | ||||
-rw-r--r-- | usr.bin/find/function.c | 5 | ||||
-rw-r--r-- | usr.bin/find/ls.c | 5 | ||||
-rw-r--r-- | usr.bin/find/main.c | 5 | ||||
-rw-r--r-- | usr.bin/find/misc.c | 4 | ||||
-rw-r--r-- | usr.bin/find/operator.c | 5 | ||||
-rw-r--r-- | usr.bin/find/option.c | 4 |
7 files changed, 14 insertions, 18 deletions
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c index 593ab9b..f100f88 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 bff7af5..81b3475 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 a7ccd29..bb7b97e 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 d7ff7a5..0ffc178 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 8c0dfd1..60792cb 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 cc7b45b..ce3925a 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 d6716e1..ae105d9 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> |