pkg/system: LUtimesNano: remove stub for non-Linux

It's not used, and is not carried in the new module.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-07-29 09:09:29 +02:00
parent 03f44e6d14
commit 450ac30e4a

View File

@@ -1,10 +0,0 @@
//go:build !linux && !freebsd
package system
import "syscall"
// LUtimesNano is only supported on linux and freebsd.
func LUtimesNano(path string, ts []syscall.Timespec) error {
return ErrNotSupportedPlatform
}