From 3ac1ee16f377d31a0fb80c8dae28b6239ac4229e Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- .../wazero/internal/sysfs/futimens_unsupported.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 vendor/github.com/tetratelabs/wazero/internal/sysfs/futimens_unsupported.go (limited to 'vendor/github.com/tetratelabs/wazero/internal/sysfs/futimens_unsupported.go') diff --git a/vendor/github.com/tetratelabs/wazero/internal/sysfs/futimens_unsupported.go b/vendor/github.com/tetratelabs/wazero/internal/sysfs/futimens_unsupported.go deleted file mode 100644 index 69d564942..000000000 --- a/vendor/github.com/tetratelabs/wazero/internal/sysfs/futimens_unsupported.go +++ /dev/null @@ -1,18 +0,0 @@ -//go:build (!windows && !linux && !darwin) || tinygo - -package sysfs - -import ( - "github.com/tetratelabs/wazero/experimental/sys" -) - -func utimens(path string, atim, mtim int64) sys.Errno { - return chtimes(path, atim, mtim) -} - -func futimens(fd uintptr, atim, mtim int64) error { - // Go exports syscall.Futimes, which is microsecond granularity, and - // WASI tests expect nanosecond. We don't yet have a way to invoke the - // futimens syscall portably. - return sys.ENOSYS -} -- cgit v1.2.3