aboutsummaryrefslogtreecommitdiffstats
path: root/math/fabs.c
blob: 8a4adf3c1574f61af4613c53d7b17fef2afb6840 (plain) (blame)
1
2
3
#include "maths.h"

double fabs(double n) { return n < 0 ? -n : n; }