Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include "cblas.h"
00011 #include "cblas_f77.h"
00012 void cblas_zdotc_sub( const int N, const void *X, const int incX,
00013 const void *Y, const int incY, void *dotc)
00014 {
00015 #ifdef F77_INT
00016 F77_INT F77_N=N, F77_incX=incX, F77_incY=incY;
00017 #else
00018 #define F77_N N
00019 #define F77_incX incX
00020 #define F77_incY incY
00021 #endif
00022 F77_zdotc_sub( &F77_N, X, &F77_incX, Y, &F77_incY, dotc);
00023 return;
00024 }