shithub: scc

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

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

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