shithub: scc

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