shithub: scc

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

View raw version

#include <stdlib.h>
#undef abs

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