shithub: scc

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

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

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