shithub: scc

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

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

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