Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <math.h>
  2.  
  3. double asin(double x)
  4. {
  5.         return atan(sqrt(x * x / (1.0 - x * x)));
  6. }