git: 9front

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