// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !s390x

// This is a large group of functions that most architectures don't
// implement in assembly.

package math

const haveArchAcos = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchAcosh = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchAsin = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchAsinh = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchAtan = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchAtan2 = false

func (,  float64) float64 {
	panic("not implemented")
}

const haveArchAtanh = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchCbrt = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchCos = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchCosh = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchErf = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchErfc = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchExpm1 = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchFrexp = false

func ( float64) (float64, int) {
	panic("not implemented")
}

const haveArchLdexp = false

func ( float64,  int) float64 {
	panic("not implemented")
}

const haveArchLog10 = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchLog2 = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchLog1p = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchMod = false

func (,  float64) float64 {
	panic("not implemented")
}

const haveArchPow = false

func (,  float64) float64 {
	panic("not implemented")
}

const haveArchRemainder = false

func (,  float64) float64 {
	panic("not implemented")
}

const haveArchSin = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchSinh = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchTan = false

func ( float64) float64 {
	panic("not implemented")
}

const haveArchTanh = false

func ( float64) float64 {
	panic("not implemented")
}