mirror of
https://github.com/make-42/xyosc
synced 2025-01-18 18:57:10 +01:00
11 lines
269 B
Go
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")
|
|
}
|