git: 9front

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