shithub: scc

ref: 23cb5f4c52263967dfa971b8912f6a2fcbef02a2
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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