Set visibility of internal symbols to hidden

This commit is contained in:
Martin Kroeker 2022-06-22 18:46:05 +02:00 committed by GitHub
parent 5640d59049
commit 1755fa561a
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 @@
// const static FLOAT dp1 = 1.; // const static FLOAT dp1 = 1.;
int CNAME(BLASLONG n, BLASLONG k, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, void *buffer){ int
#ifndef C_MSVC
__attribute__((visibility("hidden")))
#endif
CNAME(BLASLONG n, BLASLONG k, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, void *buffer){
BLASLONG i; BLASLONG i;
FLOAT *B = b; FLOAT *B = b;