shithub: scc

ref: 1d36866ee5505eec6d0310522e5ba8879d44f5bd
dir: /src/libc/stdlib/abs.c/

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

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