mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
11 lines
250 B
Go
11 lines
250 B
Go
|
//go:build !noasm && !tinygo && (amd64 || s390x || arm || ppc64le || 386 || wasm)
|
||
|
// +build !noasm
|
||
|
// +build !tinygo
|
||
|
// +build amd64 s390x arm ppc64le 386 wasm
|
||
|
|
||
|
package math32
|
||
|
|
||
|
const haveArchRemainder = true
|
||
|
|
||
|
func archRemainder(x, y float32) float32
|