shithub: scc

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

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

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