shithub: scc

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