shithub: scc

ref: 4691d9aba548d25e59960b02334f98991a534a4c
dir: /src/libc/stdlib/abs.c/

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

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