git: 9front

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