shithub: scc

ref: cac397206b8e30c33919c15fe9fc93cedb9758dc
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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