-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert export of times.CTime; add std/time_t instead. (#10319)
* Revert export of times.CTime * Add std/time_t
- Loading branch information
Showing
3 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters