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/date.c | |
parent | d5a3b1ed7d7108398f0d908a33f69590128416d7 (diff) | |
download | src-5eb43ac2f70729e688f03999a2f66d1272e14a6d.tar.gz src-5eb43ac2f70729e688f03999a2f66d1272e14a6d.zip |
Consistently use __FBSDID
Notes
Notes:
svn path=/head/; revision=99109
Diffstat (limited to 'bin/date/date.c')
-rw-r--r-- | bin/date/date.c | 4 |
1 files changed, 2 insertions, 2 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> |