forked from KolibriOS/kolibrios
release ktcc 0.9.26
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
6
programs/develop/ktcc/trunk/libc/math/asin.c
Normal file
6
programs/develop/ktcc/trunk/libc/math/asin.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <math.h>
|
||||
|
||||
double asin(double x)
|
||||
{
|
||||
return atan(sqrt(x * x / (1.0 - x * x)));
|
||||
}
|
Reference in New Issue
Block a user