Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make Don't need strftime() on Ultrix either.
details: https://anonhg.NetBSD.org/src/rev/f4e0e1de7e77
branches: trunk
changeset: 475828:f4e0e1de7e77
user: simonb <simonb%NetBSD.org@localhost>
date: Fri Aug 27 00:47:25 1999 +0000
description:
Don't need strftime() on Ultrix either.
diffstat:
usr.bin/make/util.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diffs (32 lines):
diff -r f979a4c0e270 -r f4e0e1de7e77 usr.bin/make/util.c
--- a/usr.bin/make/util.c Thu Aug 26 22:53:41 1999 +0000
+++ b/usr.bin/make/util.c Fri Aug 27 00:47:25 1999 +0000
@@ -1,15 +1,15 @@
-/* $NetBSD: util.c,v 1.21 1999/06/29 07:44:21 christos Exp $ */
+/* $NetBSD: util.c,v 1.22 1999/08/27 00:47:25 simonb Exp $ */
/*
* Missing stuff from OS's
*/
#ifdef MAKE_BOOTSTRAP
-static char rcsid[] = "$NetBSD: util.c,v 1.21 1999/06/29 07:44:21 christos Exp $";
+static char rcsid[] = "$NetBSD: util.c,v 1.22 1999/08/27 00:47:25 simonb Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: util.c,v 1.21 1999/06/29 07:44:21 christos Exp $");
+__RCSID("$NetBSD: util.c,v 1.22 1999/08/27 00:47:25 simonb Exp $");
#endif
#endif
@@ -429,7 +429,8 @@
return rv;
}
-#if !defined(__SVR4) && !defined(__linux__)
+#if !defined(__SVR4) && !defined(__linux__) && !defined(ultrix)
+
int
strftime(buf, len, fmt, tm)
char *buf;
Home |
Main Index |
Thread Index |
Old Index