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

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