blob: 9dfaf5cf766d29bb950876339f3836ee31311416 [file] [log] [blame]
#include <stdlib.h>
long long llabs(long long a)
{
return a>0 ? a : -a;
}