shithub: scc

ref: 4dd43534558d8e24534d263a3bc1ca748052af9a
dir: /lib/c/llabs.c/

View raw version
#include <stdlib.h>
#undef llabs

long long
llabs(long long n)
{
	return (n < 0) ? -n : n;
}