shithub: scc

ref: bd23b0292ee5add6989dec35cc75b7c7efcf394d
dir: /lib/c/abs.c/

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

int
abs(int n)
{
	return (n < 0) ? -n : n;
}