]> www.ginac.de Git - cln.git/blob - src/complex/elem/cl_C_from_R_R_complex.cc
Tweak for MacOS X.
[cln.git] / src / complex / elem / cl_C_from_R_R_complex.cc
1 // complex_C().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_C.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 const cl_N complex_C (const cl_R& a, const cl_R& b)
15 {
16         return allocate_complex(a,b);
17 }
18
19 }  // namespace cln