fix improper function prototypes (empty parentheses)
This commit is contained in:
parent
2dba455d2e
commit
cf2174fb69
|
@ -70,7 +70,7 @@
|
||||||
int blas_server_avail = 0;
|
int blas_server_avail = 0;
|
||||||
int blas_omp_number_max = 0;
|
int blas_omp_number_max = 0;
|
||||||
|
|
||||||
extern int openblas_omp_adaptive_env();
|
extern int openblas_omp_adaptive_env(void);
|
||||||
|
|
||||||
static void * blas_thread_buffer[MAX_PARALLEL_NUMBER][MAX_CPU_NUMBER];
|
static void * blas_thread_buffer[MAX_PARALLEL_NUMBER][MAX_CPU_NUMBER];
|
||||||
#ifdef HAVE_C11
|
#ifdef HAVE_C11
|
||||||
|
@ -79,7 +79,7 @@ static atomic_bool blas_buffer_inuse[MAX_PARALLEL_NUMBER];
|
||||||
static _Bool blas_buffer_inuse[MAX_PARALLEL_NUMBER];
|
static _Bool blas_buffer_inuse[MAX_PARALLEL_NUMBER];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void adjust_thread_buffers() {
|
static void adjust_thread_buffers(void) {
|
||||||
|
|
||||||
int i=0, j=0;
|
int i=0, j=0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue