git: 9front

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