shithub: scc

ref: bd49f398995ad7da3198d1a3d3309591dd23c9ee
dir: /src/libc/stdlib/abs.c/

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

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