shithub: scc

ref: 6bb0202d65456bbd85648ad76552b8709bdb776c
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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