git: 9front

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