git: 9front

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