git: 9front

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