shithub: scc

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

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

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