shithub: scc

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

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

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