diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-03 14:25:04 -0800 |
---|---|---|
committer | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-03 14:25:04 -0800 |
commit | 53147cc54610a9917c6838e2f66080288706748d (patch) | |
tree | 5494054516d9ad07bbf25e42739cecd7c2700090 /lib | |
parent | af7d758cfc5361faec2a8110a9248b95439fac9e (diff) | |
download | Nim-53147cc54610a9917c6838e2f66080288706748d.tar.gz |
fixup
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 143a62beb..1f5e63528 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -2419,7 +2419,7 @@ proc isHidden*(path: string): bool {.noNimScript.} = let fileName = lastPathPart(path) result = len(fileName) >= 2 and fileName[0] == '.' and fileName != ".." -proc processID*(): int = +proc processID*(): int {.noNimScript.} = ## return current process ID. See also ``osproc.processID(p: Process)``. when defined(windows): proc GetCurrentProcessId(): DWORD {.stdcall, dynlib: "kernel32", |