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

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

double acos(double x)
{
  return _acos(x);
}