git: 9front

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