git: 9front

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