shithub: scc

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