shithub: scc

ref: f6fec412ea43346ce7ee76dfb94881755708de45
dir: /src/libc/stdlib/abs.c/

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

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