git: 9front

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