shithub: scc

ref: 83313d4505acea160478ef7bf2c60645e3cec526
dir: /src/libc/stdlib/abs.c/

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

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