git: 9front

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