git: 9front

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