git: 9front

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