shithub: scc

ref: 0088b2b37951157ee736e051c6479f864d552589
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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