shithub: scc

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