shithub: scc

ref: 330cfd2833ed695dac4462c0035925e2187d17fe
dir: /src/libc/stdlib/abs.c/

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

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