forked from KolibriOS/kolibrios
6 lines
92 B
C
6 lines
92 B
C
#include <math.h>
|
|
|
|
double asin(double x)
|
|
{
|
|
return atan(sqrt(x * x / (1.0 - x * x)));
|
|
} |