shithub: scc

ref: 1f43b75a1163e7edec45e03d2905f4abcb105506
dir: /src/libc/stdlib/abs.c/

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

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