shithub: scc

ref: 79b9a5d60b5790789823b721434f96bd4d88686c
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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