summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/i386/atan2.S
blob: acf6e03aee30904be00a2012c2961e4960d28e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

.text
.type   atan2,@function
.global atan2
atan2:
        fldl   4(%esp)
        fldl  12(%esp)
        fpatan
        ret

.ende:
.size    atan2,.ende-atan2