shithub: scc

ref: 2ceb6eb753269256d560b2af3d5d1cb042723ea2
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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