git: 9front

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