git: 9front

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