shithub: scc

ref: 2f51459d358787bb85dfbb87b004920aeaf625a1
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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