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