Merge all amd64 related changes from cmake branch
[reactos.git] / reactos / lib / sdk / crt / math / amd64 / tan.S
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * PURPOSE: Implementation of tan
5 * FILE: lib/sdk/crt/math/amd64/tan.S
6 * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <asm.inc>
12 #include <ksamd64.inc>
13
14 /* CODE **********************************************************************/
15 .code64
16
17 PUBLIC tan
18 tan:
19 UNIMPLEMENTED tan
20 ret
21
22 END