shithub: scc

ref: 59ec69003f284ff73480ce2724e50fe7ee178f98
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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