shithub: scc

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