shithub: scc

ref: 9c363497114e0f7a050c5952fdadb1236e39ed8e
dir: /src/libc/stdlib/abs.c/

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

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