mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00
11 lines
131 B
Go
11 lines
131 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package errdefs
|
|
|
|
import "syscall"
|
|
|
|
func syscallErrors() map[syscall.Errno]bool {
|
|
return nil
|
|
}
|