git: 9front

ref: bbf10e9a52bbfbfb7dfcda043b0383866c72931e
dir: /sys/src/libc/port/fabs.c/

View raw version
#include <u.h>
#include <libc.h>

double
fabs(double arg)
{

	if(arg < 0)
		return -arg;
	return arg;
}