shithub: scc

ref: 347a2a6c2decb0dc4abcafc4017cfa15d299416a
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;
}