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

float fabsf(float n) { return n < 0 ? -n : n; }