git: 9front

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