1 // max().
2 
3 // General includes.
4 #include "base/cl_sysdep.h"
5 
6 // Specification.
7 #include "cln/sfloat.h"
8 
9 
10 // Implementation.
11 
12 namespace cln {
13 
max(const cl_SF & x,const cl_SF & y)14 const cl_SF max (const cl_SF& x, const cl_SF& y)
15 {
16 	return (x >= y ? x : y);
17 }
18 
19 }  // namespace cln
20