blob: f6460048d092bb3013ac9b071e2d29dbbb22df50 [file] [log] [blame]
/*
* cblas_srotg.c
*
* The program is a C interface to srotg.
*
* Written by Keita Teranishi. 2/11/1998
*
*/
#include "cblas.h"
#include "cblas_f77.h"
void cblas_srotg( float *a, float *b, float *c, float *s)
{
F77_srotg(a,b,c,s);
}