// min().

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

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


// Implementation.

namespace cln {

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

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1