shithub: scc

ref: 2294afff84df612d024afbd55809541d7e788099
dir: /src/libc/stdlib/abs.c/

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

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