shithub: scc

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