LAPACK  3.11.0
LAPACK: Linear Algebra PACKage
cblas_crotg.c
1 /*
2  * cblas_crotg.c
3  *
4  * The program is a C interface to crotg.
5  *
6  */
7 #include "cblas.h"
8 #include "cblas_f77.h"
9 void cblas_crotg(void *a, void *b, float *c, void *s)
10 {
11  F77_crotg(a,b,c,s);
12 }
13