set most of trunk svn property eol-style:native
[reactos.git] / reactos / lib / crt / math / i386 / atan_asm.s
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * PURPOSE:
5 * FILE:
6 * PROGRAMER: Magnus Olsen (magnus@greatlord.com)
7 *
8 */
9
10 .globl _atan
11
12 .intel_syntax noprefix
13
14 /* FUNCTIONS ***************************************************************/
15
16 _atan:
17 push ebp
18 mov ebp,esp
19 fld qword ptr [ebp+8]
20 fpatan
21 pop ebp
22 ret