// min().

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

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


// Implementation.

namespace cln {

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

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1