shithub: scc

ref: 4138b6d9bacdea8445147de98f32e2df6b49778b
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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