Files
Nim/tests/tinvwhen.nim
2010-02-14 00:29:35 +01:00

9 lines
417 B
Nim

# This was parsed even though it should not!
proc chdir(path: CString): cint {.importc: "chdir", header: "dirHeader".}
proc getcwd(buf: CString, buflen: cint): CString
when defined(unix): {.importc: "getcwd", header: "<unistd.h>".} #ERROR_MSG invalid indentation
elif defined(windows): {.importc: "getcwd", header: "<direct.h>"}
else: {.error: "os library not ported to your OS. Please help!".}