shithub: scc

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