aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue9510a/a.go
blob: 1a5224b8c6882a7156deaebbaa1cad834fbbd0cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package issue9510a

/*
static double csquare(double a, double b) {
	__complex__ double d;
	__real__ d = a;
	__imag__ d = b;
	return __real__ (d * d);
}
*/
import "C"

func F(a, b float64) float64 {
	return float64(C.csquare(C.double(a), C.double(b)))
}