diff options
Diffstat (limited to 'lib/posix/posix.nim')
-rw-r--r-- | lib/posix/posix.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/posix.nim b/lib/posix/posix.nim index 55d1dd2eb..b635c0b0b 100644 --- a/lib/posix/posix.nim +++ b/lib/posix/posix.nim @@ -92,7 +92,7 @@ else: # There used to be this name in posix.nim a long time ago, not sure why! {.deprecated: [cSIG_HOLD: SIG_HOLD].} -when not defined(macosx): +when not defined(macosx) and not defined(android): proc st_atime*(s: Stat): Time {.inline.} = ## Second-granularity time of last access result = s.st_atim.tv_sec |