diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | math/w_lgamma.c | 10 | ||||
-rw-r--r-- | math/w_lgammaf.c | 6 | ||||
-rw-r--r-- | math/w_lgammal.c | 6 |
4 files changed, 28 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com> + * math/w_lgamma.c: New file. + * math/w_lgammaf.c: New file. + * math/w_lgammal.c: New file. + +2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com> + * sysdeps/ieee754/flt-32/e_log2f.c (__log2f): Define without wrapper. * sysdeps/ieee754/flt-32/e_logf.c (__logf): Likewise * sysdeps/ieee754/flt-32/e_powf.c (__powf): Likewise diff --git a/math/w_lgamma.c b/math/w_lgamma.c new file mode 100644 index 0000000000..04b9b197f2 --- /dev/null +++ b/math/w_lgamma.c @@ -0,0 +1,10 @@ +#include <math-type-macros-double.h> +#include <w_lgamma_template.c> +#if __USE_WRAPPER_TEMPLATE +strong_alias (__lgamma, __gamma) +weak_alias (__gamma, gamma) +# ifdef NO_LONG_DOUBLE +strong_alias (__gamma, __gammal) +weak_alias (__gammal, gammal) +# endif +#endif diff --git a/math/w_lgammaf.c b/math/w_lgammaf.c new file mode 100644 index 0000000000..371fa26234 --- /dev/null +++ b/math/w_lgammaf.c @@ -0,0 +1,6 @@ +#include <math-type-macros-float.h> +#include <w_lgamma_template.c> +#if __USE_WRAPPER_TEMPLATE +strong_alias (__lgammaf, __gammaf) +weak_alias (__gammaf, gammaf) +#endif diff --git a/math/w_lgammal.c b/math/w_lgammal.c new file mode 100644 index 0000000000..cf6cc9c1ca --- /dev/null +++ b/math/w_lgammal.c @@ -0,0 +1,6 @@ +#include <math-type-macros-ldouble.h> +#include <w_lgamma_template.c> +#if __USE_WRAPPER_TEMPLATE +strong_alias (__lgammal, __gammal) +weak_alias (__gammal, gammal) +#endif |