shithub: scc

ref: 9fbfbfa441fb3354422e52928d7f3af02d1ea2ad
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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