shithub: scc

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