shithub: scc

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