shithub: scc

ref: 39d95c720cdc1e9af291f81689208fcf599a023d
dir: /src/libc/stdlib/abs.c/

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

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