diff options
author | steve <steve@FreeBSD.org> | 1996-12-14 05:54:15 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1996-12-14 05:54:15 +0000 |
commit | e3fc14f8685fe763615d8ecf98fc75a105b3e7fa (patch) | |
tree | 7a90881b9be76d449b83a7335b97212d5c270ef2 /bin/date/date.c | |
parent | 78e21244f4320b39d29f1831a9cbadcc24312997 (diff) | |
download | FreeBSD-src-e3fc14f8685fe763615d8ecf98fc75a105b3e7fa.zip FreeBSD-src-e3fc14f8685fe763615d8ecf98fc75a105b3e7fa.tar.gz |
Merge Lite2 mods, fix incorrect default string, cleanup
use of .Nm macros, and -Wall cleaning.
Diffstat (limited to 'bin/date/date.c')
-rw-r--r-- | bin/date/date.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index 12261be..eaefc46 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -30,17 +30,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: date.c,v 1.6 1995/10/23 20:26:53 ache Exp $ + * $Id: date.c,v 1.7 1996/04/06 01:42:09 ache Exp $ */ #ifndef lint -static char copyright[] = +static char const copyright[] = "@(#) Copyright (c) 1985, 1987, 1988, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)date.c 8.1 (Berkeley) 5/31/93"; +static char const sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95"; #endif /* not lint */ #include <sys/param.h> |