shithub: scc

ref: 86b5e746d19539add2df370455006cfc4c679648
dir: /src/libc/stdlib/abs.c/

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

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