kolibrios/programs/develop/ktcc/trunk/libc/math/asin.c
turbocat e08c6968ef ktcc: rollback to r9529
git-svn-id: svn://kolibrios.org@9558 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-01-02 12:16:17 +00:00

6 lines
92 B
C

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