shithub: scc

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