git: 9front

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