// complex_C(). // General includes. #include "cl_sysdep.h" // Specification. #include "cl_C.h" // Implementation. namespace cln { const cl_N complex_C (const cl_R& a, const cl_R& b) { return allocate_complex(a,b); } } // namespace cln