git: 9front

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