shithub: scc

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

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

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