ReactOS 0.4.15-dev-7924-g5949c20
asin.c File Reference
#include <math.h>
Include dependency graph for asin.c:

Go to the source code of this file.

Functions

double asin (double __x)
 

Function Documentation

◆ asin()

double asin ( double  __x)

Definition at line 28 of file asin.c.

29{
30 return atan2(__x, sqrt(1.0 - __x * __x));
31}
_STLP_DECLSPEC complex< float > _STLP_CALL sqrt(const complex< float > &)
Definition: complex.cpp:188
valarray< _Tp > atan2(const valarray< _Tp > &__x, const valarray< _Tp > &__y)
Definition: _valarray.h:928