shithub: scc

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