shithub: scc

ref: 99605c45f8a60733579b474e7491314442a60843
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

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