shithub: scc

ref: 347a2a6c2decb0dc4abcafc4017cfa15d299416a
dir: /src/libc/stdlib/abs.c/

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

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