shithub: scc

ref: 6eaa4bfaae6f1836f8250830673a48a467e5d757
dir: /lib/c/labs.c/

View raw version
#include <stdlib.h>
#undef labs

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