shithub: scc

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

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

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