#include intmax_t imaxabs(intmax_t a) { return a>0 ? a : -a; } #ifdef TEST int main(void) { return 0; } #endif