diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
| commit | 5eb43ac2f70729e688f03999a2f66d1272e14a6d (patch) | |
| tree | 4c7fe36c579d443e1734fa7f4d5c003df04f4202 /bin/date | |
| parent | d5a3b1ed7d7108398f0d908a33f69590128416d7 (diff) | |
Notes
Diffstat (limited to 'bin/date')
| -rw-r--r-- | bin/date/date.c | 4 | ||||
| -rw-r--r-- | bin/date/netdate.c | 4 | ||||
| -rw-r--r-- | bin/date/vary.c | 7 |
3 files changed, 6 insertions, 9 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index 0cf1d1e8ed86..a8fa4413f94a 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -41,9 +41,9 @@ static char const copyright[] = #if 0 static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/time.h> diff --git a/bin/date/netdate.c b/bin/date/netdate.c index 14716df951b1..0a67adec274e 100644 --- a/bin/date/netdate.c +++ b/bin/date/netdate.c @@ -35,9 +35,9 @@ #if 0 static char sccsid[] = "@(#)netdate.c 8.1 (Berkeley) 5/31/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/time.h> diff --git a/bin/date/vary.c b/bin/date/vary.c index 2e0bb88ef989..a314e4823ee1 100644 --- a/bin/date/vary.c +++ b/bin/date/vary.c @@ -24,12 +24,9 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ - #include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <err.h> #include <time.h> #include <string.h> |
