shithub: scc

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