blob: 8497daafb20af09d2c14acc6d8785fd324dc8aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ab,v 1.3 1999/07/15 00:15:25 mjl Exp $
--- time.c.orig Thu Jul 15 01:28:59 1999
+++ time.c Thu Jul 15 01:30:08 1999
@@ -241,7 +241,7 @@
struct tm *gmt = gmtime(&now);
zone = (gmt->tm_hour - h) * 3600;
#else
-#if defined(bsdi) || defined(SUN) || defined(SVR4) || defined(convex)
+#if defined(bsdi) || defined(SUN) || defined(SVR4) || defined(convex) || defined(__NetBSD__)
time_t now;
struct tm *tm;
tzset();
|