shithub: scc

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

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

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