8 lines
90 B
C
Raw Normal View History

#include <math.h>
#include "headers/atan.h"
double atan(double x)
{
return _atan(x);
}