git: 9front

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