mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
os.nim: do not include and import ospaths
This commit is contained in:
@@ -29,14 +29,6 @@ else:
|
||||
import ospaths
|
||||
export ospaths
|
||||
|
||||
when defined(posix):
|
||||
when NoFakeVars:
|
||||
const pathMax = 5000 # doesn't matter really. The concept of PATH_MAX
|
||||
# doesn't work anymore on modern OSes.
|
||||
else:
|
||||
var
|
||||
pathMax {.importc: "PATH_MAX", header: "<stdlib.h>".}: cint
|
||||
|
||||
proc c_remove(filename: cstring): cint {.
|
||||
importc: "remove", header: "<stdio.h>".}
|
||||
proc c_rename(oldname, newname: cstring): cint {.
|
||||
@@ -1388,7 +1380,7 @@ proc moveDir*(source, dest: string) {.tags: [ReadIOEffect, WriteIOEffect].} =
|
||||
copyDir(source, dest)
|
||||
removeDir(source)
|
||||
|
||||
include ospaths
|
||||
#include ospaths
|
||||
|
||||
proc expandSymlink*(symlinkPath: string): string =
|
||||
## Returns a string representing the path to which the symbolic link points.
|
||||
|
||||
Reference in New Issue
Block a user