Sign in
go
/
go
/
4fc9d3bc58413861f2012c24065ce3f7ed9df4db
/
.
/
misc
/
cgo
/
test
/
issue9510b
/
b.go
blob: 5016b39597e13439c7e800df0727467eee18eccb [
file
] [
log
] [
blame
]
package issue9510b
/*
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)))
}