summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/srot.c
diff options
context:
space:
mode:
Diffstat (limited to 'gsl-1.9/cblas/srot.c')
-rw-r--r--gsl-1.9/cblas/srot.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gsl-1.9/cblas/srot.c b/gsl-1.9/cblas/srot.c
new file mode 100644
index 0000000..ee602d0
--- /dev/null
+++ b/gsl-1.9/cblas/srot.c
@@ -0,0 +1,12 @@
+#include <gsl/gsl_math.h>
+#include <gsl/gsl_cblas.h>
+#include "cblas.h"
+
+void
+cblas_srot (const int N, float *X, const int incX, float *Y, const int incY,
+ const float c, const float s)
+{
+#define BASE float
+#include "source_rot.h"
+#undef BASE
+}