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

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

double atan(double x)
{
  return _atan(x);
}