// max(). // General includes. #include "base/cl_sysdep.h" // Specification. #include "cln/lfloat.h" // Implementation. namespace cln { const cl_LF max (const cl_LF& x, const cl_LF& y) { return (x >= y ? x : y); } } // namespace cln