shithub: scc

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