shithub: scc

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

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

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