// min().

// General includes.
#include "cl_sysdep.h"

// Specification.
#include "cln/ffloat.h"


// Implementation.

namespace cln {

const cl_FF min (const cl_FF& x, const cl_FF& y)
{
	return (x <= y ? x : y);
}

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1