shithub: scc

ref: ab99666d785ab77175604d87d9abd204645b040b
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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