#include "maths.h" float fabsf(float n) { return n < 0 ? -n : n; }