diff options
author | Oscar NihlgÄrd <oscarnihlgard@gmail.com> | 2019-01-16 21:08:32 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-16 21:08:32 +0100 |
commit | 5df411bd6e51e801dd06fb6b8b6f1804f8dcf9b1 (patch) | |
tree | 1f713c70abe79acf7dbacee322c687a412de97bc /lib/std | |
parent | fc30cf02bca70341846d07e02b9af0841ba9f985 (diff) | |
download | Nim-5df411bd6e51e801dd06fb6b8b6f1804f8dcf9b1.tar.gz |
Revert export of times.CTime; add std/time_t instead. (#10319)
* Revert export of times.CTime * Add std/time_t
Diffstat (limited to 'lib/std')
-rw-r--r-- | lib/std/time_t.nim | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/std/time_t.nim b/lib/std/time_t.nim new file mode 100644 index 000000000..37918ee6c --- /dev/null +++ b/lib/std/time_t.nim @@ -0,0 +1,23 @@ +# +# +# Nim's Runtime Library +# (c) Copyright 2019 Nim contributors +# +# See the file "copying.txt", included in this +# distribution, for details about the copyright. +# + +when defined(nimdoc): + type + impl = distinct int64 + Time* = impl ## \ + ## Wrapper for ``time_t``. On posix, this is an alias to ``posix.Time``. +elif defined(windows): + when defined(i386) and defined(gcc): + type Time* {.importc: "time_t", header: "<time.h>".} = distinct int32 + else: + # newest version of Visual C++ defines time_t to be of 64 bits + type Time* {.importc: "time_t", header: "<time.h>".} = distinct int64 +elif defined(posix): + import posix + export posix.Time \ No newline at end of file |