shithub: scc

ref: 831becab55913062b3a314c34cec38fa511bb21b
dir: /lib/c/llabs.c/

View raw version
#include <stdlib.h>
#undef llabs

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