shithub: scc

ref: 55554976b71c0508c80fdd3531326bcce0882bbc
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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