diff options
Diffstat (limited to 'REORG.TODO/sysdeps/i386/fpu/s_atanl.c')
-rw-r--r-- | REORG.TODO/sysdeps/i386/fpu/s_atanl.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/REORG.TODO/sysdeps/i386/fpu/s_atanl.c b/REORG.TODO/sysdeps/i386/fpu/s_atanl.c new file mode 100644 index 0000000000..b7dba88aad --- /dev/null +++ b/REORG.TODO/sysdeps/i386/fpu/s_atanl.c @@ -0,0 +1,22 @@ +/* + * Written by J.T. Conklin <jtc@netbsd.org>. + * Public domain. + * + * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>. + */ + +#include <math_private.h> + +long double +__atanl (long double x) +{ + long double res; + + asm ("fld1\n" + "fpatan" + : "=t" (res) : "0" (x)); + + return res; +} + +weak_alias (__atanl, atanl) |