shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/stdlib/abs.c/

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

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