mirror of https://github.com/docker/cli.git
11 lines
218 B
Go
11 lines
218 B
Go
|
// +build !windows
|
||
|
|
||
|
package syscallx
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
// Readlink returns the destination of the named symbolic link.
|
||
|
func Readlink(path string, buf []byte) (n int, err error) {
|
||
|
return syscall.Readlink(path, buf)
|
||
|
}
|