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