X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/3ecab1575ef1f45a5e7cd3c48cd937ffa8eb0ad9..9acf6b941e1356590e94e8e4a0bcf5dd3318087c:/src/src/os.c diff --git a/src/src/os.c b/src/src/os.c index 6e02b8fe2..2b6f79c3f 100644 --- a/src/src/os.c +++ b/src/src/os.c @@ -836,6 +836,39 @@ os_get_dns_resolver_res(void) /* ----------------------------------------------------------------------- */ +/*********************************************************** +* Time-related functions * +***********************************************************/ + +/* At least Solaris, and probably others, don't have this */ + +#ifndef _BSD_SOURCE + +# include +# include + +time_t +timegm(struct tm * tm) +{ +time_t ret; +char *tz; + +tz = getenv("TZ"); +setenv("TZ", "", 1); +tzset(); +ret = mktime(tm); +if (tz) + setenv("TZ", tz, 1); +else + unsetenv("TZ"); +tzset(); +return ret; +} + +#endif + +/* ----------------------------------------------------------------------- */ +