summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/srotg.c
blob: 65b279641e95e91464f5f8681aba86b96f2cd0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_srotg (float *a, float *b, float *c, float *s)
{
#define BASE float
#include "source_rotg.h"
#undef BASE
}