// min().

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

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


// Implementation.

namespace cln {

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

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1