git: 9front

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