shithub: scc

ref: 5eb2945975eab587998f04bf277ec09fcfcec0e1
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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