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 } 11