blob: a2e1833dbe38d8bc7e8fafc2c0f758e820c50878 [file] [log] [blame]
#include <inttypes.h>
intmax_t imaxabs(intmax_t a) {
return a > 0 ? a : -a;
}