internal/syscall/unix: use our own version of this package

The upstream one assumes it's running on a Unix system (which makes
sense), but this package is also used on baremetal. So replace it on
systems that need a replaced syscall package.
This commit is contained in:
Ayke van Laethem
2025-02-26 13:35:58 +01:00
committed by Ron Evans
parent 38e3d55e64
commit 1545659817
4 changed files with 31 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package unix
import "syscall"
func Eaccess(path string, mode uint32) error {
// We don't support this syscall on baremetal or wasm.
// Callers are generally able to deal with this since unix.Eaccess also
// isn't available on Android.
return syscall.ENOSYS
}