1784b2663fb7dfa533736bc8f312fe765ecff72f
[platform/upstream/linaro-glibc.git] / sysdeps / generic / e_lgammal_r.c
1 #include <math.h>
2 #include <stdio.h>
3 #include <errno.h>
4 #include "math_private.h"
5
6 long double
7 __ieee754_lgammal_r (long double x, int *signgamp)
8 {
9   *signgamp = 0;
10   fputs ("__ieee754_lgammal_r not implemented\n", stderr);
11   __set_errno (ENOSYS);
12   return 0.0;
13 }
14
15 stub_warning (lgammal)
16 stub_warning (lgammal_r)
17 #include <stub-tag.h>