xref
: /
reactos
/
sdk
/
lib
/
crt
/
math
/
asinf.c
Home
History
Annotate
Raw
Download
current directory
Deleted
Added
sdiff
udiff
text
old ( c2c66aff )
new ( aea4cfba )
full
compact
jumper
download diff
asinf.c (c2c66aff)
asinf.c (aea4cfba)
1
2
#include <math.h>
3
1
2
#include <math.h>
3
4
#ifdef _MSC_VER
5
#pragma function(asinf)
6
#endif
7
4
_Check_return_
5
float
6
__cdecl
7
asinf(
8
_In_ float x)
9
{
10
return (float)asin((double)x);
11
}
8
_Check_return_
9
float
10
__cdecl
11
asinf(
12
_In_ float x)
13
{
14
return (float)asin((double)x);
15
}