shithub: scc

ref: 197533c60f4f89dbe35912d241d7295603925f29
dir: /src/libc/stdlib/abs.c/

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

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