aboutsummaryrefslogtreecommitdiff
path: root/src/cblas_srotmg.c
blob: 04f978b405c767e150f4230d7269e0d8fb823d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * cblas_srotmg.c
 *
 * The program is a C interface to srotmg.
 *
 * Written by Keita Teranishi.  2/11/1998
 *
 */
#include "cblas.h"
#include "cblas_f77.h"
void cblas_srotmg( float *d1, float *d2, float *b1, 
                        const float b2, float *p)
{
   F77_srotmg(d1,d2,b1,&b2,p);
}