git: 9front

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