8 lines
92 B
C
Raw Normal View History

2017-04-11 23:13:36 +02:00
#include <math.h>
#include "headers/fabs.h"
double fabs(double x)
{
return _fabs(x);
}