shithub: scc

ref: 72154ee31c060546f417db8094554ce8940df181
dir: /lib/c/llabs.c/

View raw version
#include <stdlib.h>
#undef llabs

long long
llabs(long long n)
{
	return (n < 0) ? -n : n;
}