shithub: scc

ref: 914b01afa8422ffa8ab9f125346502235e4d3163
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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