shithub: scc

ref: 36747647964a2893277d27848ee8a1d577455cf8
dir: /src/libc/stdlib/abs.c/

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

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