@@ -119,7 +119,7 @@ static void inner_basic_thread(blas_arg_t *args, BLASLONG *range_m, BLASLONG *ra
119119 FLOAT * d = (FLOAT * )args -> b + (k + k * lda ) * COMPSIZE ;
120120 FLOAT * sbb = sb ;
121121
122- #if _STDC_VERSION__ >= 201112L
122+ #if __STDC_VERSION__ >= 201112L
123123 _Atomic BLASLONG * flag = (_Atomic BLASLONG * )args -> d ;
124124#else
125125 volatile BLASLONG * flag = (volatile BLASLONG * )args -> d ;
@@ -201,7 +201,7 @@ static void inner_basic_thread(blas_arg_t *args, BLASLONG *range_m, BLASLONG *ra
201201/* Non blocking implementation */
202202
203203typedef struct {
204- #if _STDC_VERSION__ >= 201112L
204+ #if __STDC_VERSION__ >= 201112L
205205 _Atomic
206206#else
207207 volatile
@@ -246,7 +246,7 @@ static int inner_advanced_thread(blas_arg_t *args, BLASLONG *range_m, BLASLONG *
246246
247247 blasint * ipiv = (blasint * )args -> c ;
248248 BLASLONG jw ;
249- #if _STDC_VERSION__ >= 201112L
249+ #if __STDC_VERSION__ >= 201112L
250250 _Atomic BLASLONG * flag = (_Atomic BLASLONG * )args -> d ;
251251#else
252252 volatile BLASLONG * flag = (volatile BLASLONG * )args -> d ;
@@ -452,7 +452,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
452452#ifdef _MSC_VER
453453 BLASLONG flag [MAX_CPU_NUMBER * CACHE_LINE_SIZE ];
454454#else
455- #if _STDC_VERSION__ >= 201112L
455+ #if __STDC_VERSION__ >= 201112L
456456 _Atomic
457457#else
458458 volatile
@@ -728,7 +728,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
728728 BLASLONG range [MAX_CPU_NUMBER + 1 ];
729729
730730 BLASLONG width , nn , num_cpu ;
731- #if _STDC_VERSION__ >= 201112L
731+ #if __STDC_VERSION__ >= 201112L
732732 _Atomic
733733#else
734734 volatile
0 commit comments