kolibrios/programs/develop/ktcc/trunk/libc/math/asin.c

6 lines
92 B
C
Raw Normal View History

#include <math.h>
double asin(double x)
{
return atan(sqrt(x * x / (1.0 - x * x)));
}