git: 9front

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