Skip to content

Commit b562cf6

Browse files
authored
test: update function signatures
PR-URL: #5110 Ref: f6682eb Reviewed-by: Athan Reines <[email protected]>
1 parent 0258691 commit b562cf6

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/ops/imuldw/test/fixtures/c

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/ops/imuldw/test/fixtures/c/runner.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void rand_array_ui32( unsigned int *out, const unsigned int len, const unsigned
140140
* @param x input array
141141
* @param len array length
142142
*/
143-
void ui32_to_f64( double *out, unsigned const int *x, unsigned int len ) {
143+
void ui32_to_f64( double *out, const unsigned int *x, unsigned int len ) {
144144
unsigned int i;
145145

146146
for ( i = 0; i < len; i++ ) {
@@ -334,7 +334,7 @@ void muldws1( int *w, const int u, const int v ) {
334334
* @param len number of values in the domain
335335
* @param name output filename
336336
*/
337-
void generate( unsigned const int *a, unsigned const int *b, const unsigned int len, const char *name ) {
337+
void generate( const unsigned int *a, const unsigned int *b, const unsigned int len, const char *name ) {
338338
unsigned int i;
339339
unsigned int *y;
340340
FILE *f;

0 commit comments

Comments
 (0)