git: 9front

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