shithub: scc

ref: 8b6a2d7d21c67db8b1fbc4eaabf3496bcc07941d
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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