shithub: scc

ref: 954fbccea045ef32df7eb4b38908661d0354cdcb
dir: /lib/c/labs.c/

View raw version

#include <stdlib.h>
#undef labs

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