git: 9front

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