git: 9front

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