git: 9front

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