xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/examples/cgo/generated.go.tpl (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1package cgo
2
3import (
4	//#cgo LDFLAGS: -lm
5	//#include <math.h>
6	"C"
7	"math"
8)
9
10// Ncbrt returns the cube root of n.
11func Ncbrt(n int) int {
12	return int(math.Floor(float64(C.cbrt(C.double(n)))))
13}
14