diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-22 21:53:29 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-22 21:53:29 +0000 |
commit | d90536e35b89461c5dbefaae4921fd815b80aaf5 (patch) | |
tree | a7704420ac18af12d14349c9bc6bdaf03497c1d5 /lib/libc/stdtime/strftime.c | |
parent | 59d20d5aab1a3950631580f447d2067770597d01 (diff) | |
download | FreeBSD-src-d90536e35b89461c5dbefaae4921fd815b80aaf5.zip FreeBSD-src-d90536e35b89461c5dbefaae4921fd815b80aaf5.tar.gz |
Fix the style of the SCM ID's.
I believe have made all of libc .c's as consistent as possible.
Diffstat (limited to 'lib/libc/stdtime/strftime.c')
-rw-r--r-- | lib/libc/stdtime/strftime.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/libc/stdtime/strftime.c b/lib/libc/stdtime/strftime.c index 72f67d4..29401bb 100644 --- a/lib/libc/stdtime/strftime.c +++ b/lib/libc/stdtime/strftime.c @@ -15,11 +15,6 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#ifdef LIBC_RCS -static const char rcsid[] = - "$FreeBSD$"; -#endif - #ifndef lint #ifndef NOID static const char elsieid[] = "@(#)strftime.c 7.38"; @@ -33,11 +28,11 @@ static const char elsieid[] = "@(#)strftime.c 7.38"; #include "namespace.h" #include "private.h" -#ifndef LIBC_SCCS -#ifndef lint +#if defined(LIBC_SCCS) && !defined(lint) static const char sccsid[] = "@(#)strftime.c 5.4 (Berkeley) 3/14/89"; -#endif /* !defined lint */ -#endif /* !defined LIBC_SCCS */ +#endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include "tzfile.h" #include <fcntl.h> |