shithub: scc

ref: 92778381c37454ad7857d0e7ee6608920544d7d2
dir: /src/libc/stdlib/labs.c/

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

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