git: 9front

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