diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-11-09 16:36:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-09 16:36:49 +0100 |
commit | 8d850f7a69d473360c5b1a9db9fd998ab9b5dff4 (patch) | |
tree | 5debabc119da6ed297d915614d0ec028fc1f534b /lib/pure/includes/oserr.nim | |
parent | 8507e506cedc24dca91632092f3899602a262276 (diff) | |
download | Nim-8d850f7a69d473360c5b1a9db9fd998ab9b5dff4.tar.gz |
deprecated ospaths (#9665)
Diffstat (limited to 'lib/pure/includes/oserr.nim')
-rw-r--r-- | lib/pure/includes/oserr.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/includes/oserr.nim b/lib/pure/includes/oserr.nim index 31212d0d1..72c3f4f49 100644 --- a/lib/pure/includes/oserr.nim +++ b/lib/pure/includes/oserr.nim @@ -1,7 +1,7 @@ ## Include file that implements 'osErrorMsg' and friends. Do not import it! -when not declared(ospaths): - {.error: "This is an include file for ospaths.nim!".} +when not declared(os): + {.error: "This is an include file for os.nim!".} when not defined(nimscript): var errno {.importc, header: "<errno.h>".}: cint |