git: 9front

ref: 6af233e714a10cf20523e8b03e079d2e5a4cc700
dir: /sys/src/ape/lib/ap/math/fabs.c/

View raw version
#include <math.h>

double
fabs(double arg)
{

	if(arg < 0)
		return -arg;
	return arg;
}