shithub: scc

ref: 6bb0202d65456bbd85648ad76552b8709bdb776c
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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