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