xyosc/vendor/github.com/chewxy/math32/remainder_noasm.go
2024-12-21 17:38:26 +01:00

11 lines
269 B
Go

//go:build noasm || tinygo || (!amd64 && !s390x && !arm && !ppc64le && !386 && !wasm)
// +build noasm tinygo !amd64,!s390x,!arm,!ppc64le,!386,!wasm
package math32
const haveArchRemainder = false
func archRemainder(x, y float32) float32 {
panic("not implemented")
}