aboutsummaryrefslogtreecommitdiff
#include <stdlib.h>

int abs(int a)
{
	return a>0 ? a : -a;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif