shithub: scc

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

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

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