kubernetes/vendor/github.com/opencontainers/runc/libcontainer/eaccess_stub.go
Peter Hunt b4c384ebfb vendor: bump runc to 1.1.6
Signed-off-by: Peter Hunt <pehunt@redhat.com>
2023-04-12 09:19:17 -04:00

11 lines
280 B
Go

//go:build go1.20
package libcontainer
func eaccess(path string) error {
// Not needed in Go 1.20+ as the functionality is already in there
// (added by https://go.dev/cl/416115, https://go.dev/cl/414824,
// and fixed in Go 1.20.2 by https://go.dev/cl/469956).
return nil
}