shithub: scc

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