shithub: scc

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