File size: 76 Bytes
00df61d
 
 
 
 
 
1
2
3
4
5
6
7
#include <stdlib.h>

long long llabs(long long a)
{
	return a>0 ? a : -a;
}