shithub: scc

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

View raw version

#include <stdlib.h>
#undef llabs

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