git: 9front

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