git: 9front

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