shithub: scc

ref: 914c674f1eec2150b7d2c2bb8066c023c66878dd
dir: /src/libc/stdlib/llabs.c/

View raw version
#include <stdlib.h>
#undef llabs

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