shithub: scc

ref: 349ceccbc07453503347623eea9476c815473d01
dir: /src/libc/stdlib/abs.c/

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

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