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