shithub: scc

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

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

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