Set visibility of internal symbols to hidden
This commit is contained in:
parent
3004e37511
commit
b137520315
|
@ -42,7 +42,11 @@
|
|||
|
||||
// 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;
|
||||
FLOAT *B = b;
|
||||
|
|
Loading…
Reference in New Issue