shithub: scc

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

View raw version

#include <stdlib.h>
#undef llabs

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