Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / math / cos.c
1 #include <msvcrt/math.h>
2
3 double cos (double __x);
4
5 double cos (double __x)
6 {
7 register double __value;
8 #ifdef __GNUC__
9 __asm __volatile__
10 ("fcos"
11 : "=t" (__value): "0" (__x));
12 #else
13 __value = linkme_cos(__x);
14 #endif /*__GNUC__*/
15 return __value;
16 }