mirror of
https://gitea.com/Lydanne/buildx.git
synced 2026-01-13 01:14:13 +08:00
10 lines
114 B
Go
10 lines
114 B
Go
//go:build !linux
|
|
|
|
package errdefs
|
|
|
|
import "syscall"
|
|
|
|
func syscallErrors() map[syscall.Errno]bool {
|
|
return nil
|
|
}
|