shithub: scc

ref: 4f93908533138a0efbdffd880003438f98af736e
dir: /src/libc/stdlib/abs.c/

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

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