mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
Merge pull request #2309 from oderwat/fix-tzname
Fixes tzname on osx (and presumable bsd).
This commit is contained in:
@@ -49,6 +49,11 @@ when defined(posix) and not defined(JS):
|
||||
proc posix_gettimeofday(tp: var Timeval, unused: pointer = nil) {.
|
||||
importc: "gettimeofday", header: "<sys/time.h>".}
|
||||
|
||||
# we also need tzset() to make sure that tzname is initialized
|
||||
proc tzset() {.importc, header: "<sys/time.h>".}
|
||||
# calling tzset() implicitly to initialize tzname data.
|
||||
tzset()
|
||||
|
||||
elif defined(windows):
|
||||
import winlean
|
||||
|
||||
|
||||
Reference in New Issue
Block a user