git: 9front

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