shithub: scc

ref: 30037a7e84c815e217ceacd71a7b7cd3bd47881d
dir: /src/libc/stdlib/abs.c/

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

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