func Sin(f float64) float64 { return float64(C.sin(C.double(f))) }
func CSin(x float64) (y float64) { y = float64(C.sin(_Ctype_double(x))) return }