shithub: scc

ref: 950206e6394fe75a3b9bfebd4560128a686046db
dir: /src/libc/stdlib/abs.c/

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

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