shithub: scc

ref: 802fc685de68e0b4ef93de81a8270f9b3642085b
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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