blob: bcb7712b7f3f8da30df9a913f5f4f6f8be8c95c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- ./bsd.c.orig 1993-05-01 06:21:53.000000000 +0200
+++ ./bsd.c 2011-12-22 14:00:55.000000000 +0100
@@ -69,8 +69,12 @@
}
/* Function gettz() returns the offset from GMT in seconds */
-long gettz()
+long gettz(t)
+long t;
{
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
+ return -localtime(&t)->tm_gmtoff;
+#else
#define SEC_IN_DAY (24L * 60L * 60L)
#define INV_VALUE (SEC_IN_DAY + 1L)
static long retval = INV_VALUE; /* cache, init to impossible value */
@@ -95,6 +99,7 @@
retval = -tm->tm_gmtoff;
#endif
return retval;
+#endif
}
/* Standard UNIX-compatible time routines */
@@ -103,15 +108,19 @@
/* Standard UNIX-specific file attribute routines */
#include "nixmode.i"
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
+#include <unistd.h>
+#else
#ifndef SEEK_CUR
# define SEEK_CUR 1
#endif
+#endif
/* Truncate a file. */
int zootrunc(f) FILE *f;
{
- extern long lseek();
- long seekpos;
+ extern off_t lseek();
+ off_t seekpos;
int fd = fileno(f);
seekpos = lseek(fd, 0L, SEEK_CUR);
if (seekpos >= 0)
|