shithub: scc

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