projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
33d4329bbda2cbc82596b060cf41485bb310adec
[reactos.git]
/
lib
/
sdk
/
crt
/
math
/
i386
/
atan2_asm.s
1
2
#include <reactos/asm.h>
3
4
PUBLIC _atan2
5
6
.code
7
_atan2:
8
push ebp
9
mov ebp, esp
10
11
fld qword ptr [ebp + 8]
12
fld qword ptr [ebp + 16]
13
fpatan
14
15
pop ebp
16
retn
17
18
END