shithub: scc

ref: 2605b26a91d34983201cf0e7c643e28eda4cb159
dir: /lib/c/llabs.c/

View raw version

#include <stdlib.h>
#undef llabs

long long
llabs(long long n)
{
	return (n < 0) ? -n : n;
}