shithub: scc

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

View raw version

#include <stdlib.h>
#undef abs

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