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

extern int abs(int n) { return n < 0 ? -n : n; }