diff options
Diffstat (limited to 'sysdeps/stub/s_expm1l.c')
-rw-r--r-- | sysdeps/stub/s_expm1l.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/stub/s_expm1l.c b/sysdeps/stub/s_expm1l.c new file mode 100644 index 0000000000..fb8bda5eca --- /dev/null +++ b/sysdeps/stub/s_expm1l.c @@ -0,0 +1,12 @@ +#include <math.h> +#include <stdio.h> + +long double +__expm1l (long double x) +{ + fputs ("__expm1l not implemented\n", stderr); + return 0.0; +} +weak_alias (__expm1l, expm1l) + +stub_warning (expm1l) |