shithub: scc

ref: 8f0953979283c0b604bc4ed5e90ed20c870618fe
dir: /src/libc/stdlib/abs.c/

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

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