Set visibility of internal symbols to hidden

This commit is contained in:
Martin Kroeker 2022-06-22 14:45:35 +02:00 committed by GitHub
parent acec942bea
commit edd50d54cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -42,7 +42,11 @@
static FLOAT dp1 = 1.;
int CNAME(BLASLONG m, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, FLOAT *buffer){
int
#ifndef C_MSVC
__attribute__((visibility("hidden")))
#endif
CNAME(BLASLONG m, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, FLOAT *buffer){
BLASLONG i, is, min_i;
#if (TRANSA == 2) || (TRANSA == 4)