git: 9front

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