shithub: scc

ref: 97ee58190e3effbf4dfafdde9002b66c5593b47b
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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