public static float sinhf (float x);
public static double tanh (double x);
public static float tanhf (float x);
+ [CCode (feature_test_macro = "_GNU_SOURCE")]
public static void sincos (double x, out double sinx, out double cosx);
+ [CCode (feature_test_macro = "_GNU_SOURCE")]
public static void sincosf (float x, out float sinx, out float cosx);
public static double acosh (double x);
public static float acoshf (float x);
public double tanh (double x);
[CCode (cheader_filename = "math.h")]
public float tanhf (float x);
- [CCode (cheader_filename = "math.h")]
+ [CCode (cheader_filename = "math.h", feature_test_macro = "_GNU_SOURCE")]
public void sincos (double x, out double sinx, out double cosx);
- [CCode (cheader_filename = "math.h")]
+ [CCode (cheader_filename = "math.h", feature_test_macro = "_GNU_SOURCE")]
public void sincosf (float x, out float sinx, out float cosx);
[CCode (cheader_filename = "math.h")]
public double acosh (double x);