shithub: scc

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

View raw version

#include <stdlib.h>
#undef llabs

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