Welcome to mirror list, hosted at ThFree Co, Russian Federation.

w_asin.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 142ed2b752992ed3248d52338987f35c6ca7c1df (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/asin.h"

double asin(double x)
{
  return _asin(x);
}