shithub: scc

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