shithub: scc

ref: 483b5ac034a0e696ef04927d1766db58852493c6
dir: /src/libc/stdlib/abs.c/

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

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