shithub: scc

ref: 044ed044112af8996f280664833682a4f437016f
dir: /src/libc/stdlib/labs.c/

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

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