LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void cblas_drot ( const int  N,
double *  X,
const int  incX,
double *  Y,
const int  incY,
const double  c,
const double  s 
)

Definition at line 11 of file cblas_drot.c.

13 {
14 #ifdef F77_INT
15  F77_INT F77_N=N, F77_incX=incX, F77_incY=incY;
16 #else
17  #define F77_N N
18  #define F77_incX incX
19  #define F77_incY incY
20 #endif
21  F77_drot(&F77_N, X, &F77_incX, Y, &F77_incY, &c, &s);
22  return;
23 }
#define F77_incX
#define F77_drot
Definition: cblas_f77.h:49
#define F77_N
#define F77_incY
#define N
Definition: example_user.c:10

Here is the caller graph for this function: