reg/vendor/github.com/containerd/continuity/syscallx/syscall_unix.go

11 lines
218 B
Go
Raw Normal View History

// +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)
}