github.com/opencontainers/runc@v1.2.0-rc.1.0.20240520010911-492dc558cdd6/libcontainer/eaccess_stub.go (about) 1 //go:build go1.20 2 3 package libcontainer 4 5 func eaccess(path string) error { 6 // Not needed in Go 1.20+ as the functionality is already in there 7 // (added by https://go.dev/cl/416115, https://go.dev/cl/414824, 8 // and fixed in Go 1.20.2 by https://go.dev/cl/469956). 9 return nil 10 }