shithub: scc

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