shithub: scc

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

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

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