shithub: scc

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

View raw version

#include <stdlib.h>
#undef abs

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