kolibrios/programs/develop/ktcc/trunk/libc/math/atan2.asm

16 lines
160 B
NASM
Raw Normal View History

format ELF
include 'proc32.inc'
section '.text' executable
public atan2_ as "atan2"
atan2_:
fld qword[esp+8]
fld qword[esp+4]
fpatan
ret