shithub: scc

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