git: 9front

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