From: Dr. Michael Lauer Date: Mon, 26 Feb 2018 16:02:00 +0000 (+0100) Subject: glib-2.0: add feature test macro _GNU_SOURCE for pow10(3) and pow10f(3) X-Git-Tag: 0.39.92~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f5773ffda0481f4402a5abe66672d153221a7e2;p=thirdparty%2Fvala.git glib-2.0: add feature test macro _GNU_SOURCE for pow10(3) and pow10f(3) https://bugzilla.gnome.org/show_bug.cgi?id=614788 --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index e6732c50c..56f847e71 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1575,7 +1575,9 @@ namespace GLib { public static float modff (float x, out float iptr); public static double exp10 (double x); public static float exp10f (float x); + [CCode (feature_test_macro = "_GNU_SOURCE")] public static double pow10 (double x); + [CCode (feature_test_macro = "_GNU_SOURCE")] public static float pow10f (float x); public static double expm1 (double x); public static float expm1f (float x);