shithub: scc

ref: ab6005654710cbe137c97f50c015271ea1bf315b
dir: /src/libc/stdlib/abs.c/

View raw version
#include <stdlib.h>
#undef abs

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