shithub: scc

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