git: 9front

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