git: 9front

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