]> sourceware.org Git - glibc.git/blame - sysdeps/generic/s_expm1l.c
Update.
[glibc.git] / sysdeps / generic / s_expm1l.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
cccda09f
UD
4
5long double
6__expm1l (long double x)
7{
8 fputs ("__expm1l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
cccda09f
UD
10 return 0.0;
11}
12weak_alias (__expm1l, expm1l)
13
14stub_warning (expm1l)
f2ea0f5b 15#include <stub-tag.h>
This page took 0.076471 seconds and 5 git commands to generate.