diff options
author | obrien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
commit | c84c569bd147997ed62ff1c5e725709828199b68 (patch) | |
tree | 4c7fe36c579d443e1734fa7f4d5c003df04f4202 /bin/dd | |
parent | 51373f0ac8027bc2ce81c9e4f0c3203716197592 (diff) | |
download | FreeBSD-src-c84c569bd147997ed62ff1c5e725709828199b68.zip FreeBSD-src-c84c569bd147997ed62ff1c5e725709828199b68.tar.gz |
Consistently use __FBSDID
Diffstat (limited to 'bin/dd')
-rw-r--r-- | bin/dd/args.c | 4 | ||||
-rw-r--r-- | bin/dd/conv.c | 4 | ||||
-rw-r--r-- | bin/dd/conv_tab.c | 4 | ||||
-rw-r--r-- | bin/dd/dd.c | 4 | ||||
-rw-r--r-- | bin/dd/misc.c | 4 | ||||
-rw-r--r-- | bin/dd/position.c | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/bin/dd/args.c b/bin/dd/args.c index 1727404..490e33d 100644 --- a/bin/dd/args.c +++ b/bin/dd/args.c @@ -39,9 +39,9 @@ #if 0 static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> diff --git a/bin/dd/conv.c b/bin/dd/conv.c index 5b56c57..734513a 100644 --- a/bin/dd/conv.c +++ b/bin/dd/conv.c @@ -39,9 +39,9 @@ #if 0 static char sccsid[] = "@(#)conv.c 8.3 (Berkeley) 4/2/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> diff --git a/bin/dd/conv_tab.c b/bin/dd/conv_tab.c index bd951a7..7d163f8 100644 --- a/bin/dd/conv_tab.c +++ b/bin/dd/conv_tab.c @@ -39,9 +39,9 @@ #if 0 static char sccsid[] = "@(#)conv_tab.c 8.1 (Berkeley) 5/31/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> diff --git a/bin/dd/dd.c b/bin/dd/dd.c index d2d3a26..f797a7b 100644 --- a/bin/dd/dd.c +++ b/bin/dd/dd.c @@ -45,9 +45,9 @@ static char const copyright[] = #if 0 static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/stat.h> diff --git a/bin/dd/misc.c b/bin/dd/misc.c index dcd68d5..f95a811 100644 --- a/bin/dd/misc.c +++ b/bin/dd/misc.c @@ -39,9 +39,9 @@ #if 0 static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <sys/time.h> diff --git a/bin/dd/position.c b/bin/dd/position.c index 90019e7..51eafde 100644 --- a/bin/dd/position.c +++ b/bin/dd/position.c @@ -39,9 +39,9 @@ #if 0 static char sccsid[] = "@(#)position.c 8.3 (Berkeley) 4/2/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <sys/mtio.h> |