]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/e_atan2l.c
2005-12-13 Ulrich Drepper <drepper@redhat.com>
[thirdparty/glibc.git] / sysdeps / generic / e_atan2l.c
CommitLineData
31c95122
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
31c95122
UD
4
5long double
6__ieee754_atan2l (long double x, long double y)
7{
8 fputs ("__ieee754_atan2l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
31c95122
UD
10 return 0.0;
11}
12
6973fc01 13stub_warning (atan2l)
f2ea0f5b 14#include <stub-tag.h>