Skip to content

Commit 851e4a9

Browse files
authored
chore: wrap function call in API_SUFFIX
1 parent d54eb2c commit 851e4a9

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dcumin/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dcumin/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
void API_SUFFIX(stdlib_strided_dcumin)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ) {
3535
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
3636
const CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
37-
stdlib_strided_dcumin_ndarray( N, X, strideX, ox, Y, strideY, oy );
37+
API_SUFFIX(stdlib_strided_dcumin_ndarray)( N, X, strideX, ox, Y, strideY, oy );
3838
return;
3939
}
4040

0 commit comments

Comments
 (0)