shithub: scc

ref: 7315d856a1485f20691652cc9b2e4165d8095cc4
dir: /src/libc/stdlib/abs.c/

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

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