git: 9front

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