shithub: scc

ref: bd06ba3a5ea0f122fbb6b7c284c32068220dd33b
dir: /src/libc/stdlib/llabs.c/

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

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