git: 9front

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