summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/srotg.c
diff options
context:
space:
mode:
Diffstat (limited to 'gsl-1.9/cblas/srotg.c')
-rw-r--r--gsl-1.9/cblas/srotg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/gsl-1.9/cblas/srotg.c b/gsl-1.9/cblas/srotg.c
new file mode 100644
index 0000000..65b2796
--- /dev/null
+++ b/gsl-1.9/cblas/srotg.c
@@ -0,0 +1,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
+}