diff options
author | Randy Smith <randydsmithhr@gmail.com> | 2018-11-19 02:22:21 -0600 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-11-19 09:22:21 +0100 |
commit | 6c7abe6e5b9ff46fdf024e471091799361fb387f (patch) | |
tree | 8b672db6d7cae282fea3219d1bb7ad2663e5f689 /lib/pure/os.nim | |
parent | 9b9f5dee0b4810718a587354aaf4f352bc5c24bb (diff) | |
download | Nim-6c7abe6e5b9ff46fdf024e471091799361fb387f.tar.gz |
Fixes #9671 (#9750)
Diffstat (limited to 'lib/pure/os.nim')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 658bb6d3a..e2dd872e8 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1934,8 +1934,6 @@ proc moveDir*(source, dest: string) {.tags: [ReadIOEffect, WriteIOEffect], noNim copyDir(source, dest) removeDir(source) -#include ospaths - proc expandSymlink*(symlinkPath: string): string {.noNimScript.} = ## Returns a string representing the path to which the symbolic link points. ## |