git: 9front

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