shithub: scc

ref: 7665b3ee492c998789d3c9c7ad79258411f6485a
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;
}