// max(). // General includes. #include "cl_sysdep.h" // Specification. #include "cl_ffloat.h" // Implementation. const cl_FF max (const cl_FF& x, const cl_FF& y) { return (x >= y ? x : y); }