forked from KolibriOS/kolibrios
af35cc6783
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
133 B
NASM
16 lines
133 B
NASM
|
|
format ELF
|
|
include 'proc32.inc'
|
|
section '.text' executable
|
|
|
|
public atan_ as "atan"
|
|
|
|
atan_:
|
|
|
|
fld qword[esp+4]
|
|
fld1
|
|
fpatan
|
|
|
|
ret
|
|
|