git: 9front

ref: 234fdf6af8ea99f205d3b7fd6c51ded520222b19
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;
}