blob: bec4a03d6685ce02ddf5294f812a4bcd0e0cea66 [file] [log] [blame]
long long llabs(long long a)
{
return a>0 ? a : -a;
}