shithub: scc

ref: 0c4516e30afe1282abb385ed051ba1cdeae42cfa
dir: /src/libc/stdlib/abs.c/

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

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