delve/pkg/proc/macutil/rosetta_other.go
2021-12-13 10:25:23 -08:00

11 lines
194 B
Go

//go:build !darwin
// +build !darwin
package macutil
// CheckRosetta returns an error if the calling process is being translated
// by Apple Rosetta.
func CheckRosetta() error {
return nil
}