]> www.ginac.de Git - cln.git/blob - src/float/lfloat/misc/cl_LF_max.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / lfloat / misc / cl_LF_max.cc
1 // max().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 const cl_LF max (const cl_LF& x, const cl_LF& y)
15 {
16         return (x >= y ? x : y);
17 }
18
19 }  // namespace cln