blob: e721fdc2b17e7917430eca885297b6e2d47986a1 [file] [log] [blame]
#include <stdlib.h>
int abs(int a)
{
return a>0 ? a : -a;
}