git: 9front

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