shithub: scc

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

View raw version

#include <stdlib.h>
#undef llabs

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