shithub: scc

ref: 9f8594e14791b57e662abe1e76324bd2366c753c
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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