git: 9front

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