git: 9front

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