diff --git a/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/include/stdlib/ndarray/base/minmax_view_buffer_index.h b/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/include/stdlib/ndarray/base/minmax_view_buffer_index.h index abb89d678d00..a9b760baf063 100644 --- a/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/include/stdlib/ndarray/base/minmax_view_buffer_index.h +++ b/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/include/stdlib/ndarray/base/minmax_view_buffer_index.h @@ -31,7 +31,7 @@ extern "C" { /** * Computes the minimum and maximum linear indices (in bytes) in an underlying data buffer accessible to an array view. */ -int8_t stdlib_ndarray_minmax_view_buffer_index( int64_t ndims, int64_t *shape, int64_t *strides, int64_t offset, int64_t *out ); +int8_t stdlib_ndarray_minmax_view_buffer_index( const int64_t ndims, const int64_t *shape, const int64_t *strides, const int64_t offset, int64_t *out ); #ifdef __cplusplus } diff --git a/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src/main.c b/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src/main.c index ed95676c6f70..abf3fae5ac4b 100644 --- a/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src/main.c +++ b/lib/node_modules/@stdlib/ndarray/base/minmax-view-buffer-index/src/main.c @@ -47,7 +47,7 @@ * int64_t max = out[ 1 ]; * // returns 99 */ -int8_t stdlib_ndarray_minmax_view_buffer_index( int64_t ndims, int64_t *shape, int64_t *strides, int64_t offset, int64_t *out ) { +int8_t stdlib_ndarray_minmax_view_buffer_index( const int64_t ndims, const int64_t *shape, const int64_t *strides, const int64_t offset, int64_t *out ) { int64_t min; int64_t max; int64_t s;