shithub: scc

ref: 82eb1ebc8c335785da14e6e59e7c109256b5ed3c
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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