shithub: scc

ref: 0001a817076cbc01e7114c01a71fc1f70d6a4df5
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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