git: 9front

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