fix improper function prototypes (empty parentheses)

This commit is contained in:
Martin Kroeker
2023-09-30 12:56:38 +02:00
committed by GitHub
parent 13ba4edf43
commit 675cd551da
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ static int rot_thread_function(blas_arg_t *args)
return 0;
}
extern int blas_level1_thread(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha, void *a, BLASLONG lda, void *b, BLASLONG ldb, void *c, BLASLONG ldc, int (*function)(), int nthreads);
extern int blas_level1_thread(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha, void *a, BLASLONG lda, void *b, BLASLONG ldb, void *c, BLASLONG ldc, int (*function)(void), int nthreads);
#endif
int CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT c, FLOAT s)
{