shithub: scc

ref: e7b81f3f5b0030211190271574d1ade27dfab317
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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