shithub: scc

ref: fc1c8d49847235fe32bc3541d6a489c45462fffd
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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