Skip to content

Commit 88ac85c

Browse files
authored
chore: wrap function call in API_SUFFIX
1 parent c64a1f4 commit 88ac85c

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dcumaxabs/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_dcumaxabs)( 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_dcumaxabs_ndarray( N, X, strideX, ox, Y, strideY, oy );
37+
API_SUFFIX(stdlib_strided_dcumaxabs_ndarray)( N, X, strideX, ox, Y, strideY, oy );
3838
return;
3939
}
4040

0 commit comments

Comments
 (0)