git: 9front

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