shithub: scc

ref: 0194c75a6ebde28e00a49cae718c6675758326d4
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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