aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cblas/src/scasumsub.c
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-07-30 16:42:12 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-07-30 16:42:12 +0300
commitc3f888e801f16a6a34204639b386a77340acf4e9 (patch)
tree46d965a71238a5e6a9c4a0244d0ac64e09bb4540 /contrib/libs/cblas/src/scasumsub.c
parent6a4a0ea7b10e768714b024f72f84e88a4448b503 (diff)
downloadydb-c3f888e801f16a6a34204639b386a77340acf4e9.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/libs/cblas/src/scasumsub.c')
-rw-r--r--contrib/libs/cblas/src/scasumsub.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/libs/cblas/src/scasumsub.c b/contrib/libs/cblas/src/scasumsub.c
new file mode 100644
index 0000000000..b36fd18d74
--- /dev/null
+++ b/contrib/libs/cblas/src/scasumsub.c
@@ -0,0 +1,34 @@
+/* scasumsub.f -- translated by f2c (version 20200916).
+ You must link the resulting object file with libf2c:
+ on Microsoft Windows system, link with libf2c.lib;
+ on Linux or Unix systems, link with .../path/to/libf2c.a -lm
+ or, if you install libf2c.a in a standard place, with -lf2c -lm
+ -- in that order, at the end of the command line, as in
+ cc *.o -lf2c -lm
+ Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
+
+ http://www.netlib.org/f2c/libf2c.zip
+*/
+
+#include "f2c.h"
+
+/* scasumsub.f */
+
+/* The program is a fortran wrapper for scasum. */
+/* Witten by Keita Teranishi. 2/11/1998 */
+
+/* Subroutine */ int scasumsub_(integer *n, complex *x, integer *incx, real *
+ asum)
+{
+ extern doublereal scasum_(integer *, complex *, integer *);
+
+
+
+ /* Parameter adjustments */
+ --x;
+
+ /* Function Body */
+ *asum = scasum_(n, &x[1], incx);
+ return 0;
+} /* scasumsub_ */
+