shithub: scc

ref: 323f749e2672a0001d6fa1f063c23733d970004d
dir: /src/libc/stdlib/abs.c/

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

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