#include "maths.h" extern intmax_t imaxabs(intmax_t n) { return n < 0 ? -n : n; }