git: 9front

ref: 68f55577ce3a14c3f7a94db25fbd291ff44d8213
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;
}