git: 9front

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