shithub: scc

ref: 2d60e8ab6926bc6850e5299182747c314e2589ce
dir: /lib/c/abs.c/

View raw version

#include <stdlib.h>
#undef abs

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