shithub: scc

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

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

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