shithub: scc

ref: 52ef3bfb727b3f197caf482fbd151a062fa34c70
dir: /src/libc/stdlib/abs.c/

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

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