git: 9front

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