blob: 8b072727642d703c08a53749357763bcadffcc29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
*/
#include <machine/asm.h>
RCSID("$NetBSD: $")
ENTRY(__atanl)
fldt 4(%esp)
fld1
fpatan
ret
END (__atanl)
weak_alias (__atanl, atanl)
|