delve/pkg/proc/macutil/rosetta_other.go
2023-10-03 08:50:11 -07:00

10 lines
176 B
Go

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