mirror of
https://github.com/amd/blis.git
synced 2026-05-11 01:30:00 +00:00
Export functions without def file (#303)
* Revert "restore bli_extern_defs exporting for now" This reverts commit 09fb07c350b2acee17645e8e9e1b8d829c73dca8. * Remove symbols not intended to be public * No need of def file anymore * Fix whitespace * No need of configure option * Remove export macro from definitions * Remove blas export macro from definitions
This commit is contained in:
committed by
Field G. Van Zee
parent
e2a02ebd00
commit
766769eeb9
@@ -41,7 +41,7 @@
|
||||
-lf2c -lm (in that order)
|
||||
*/
|
||||
|
||||
/* Subroutine */ bla_real BLIS_EXPORT_BLAS PASTEF77(s,cabs1)(bla_scomplex *z)
|
||||
/* Subroutine */ bla_real PASTEF77(s,cabs1)(bla_scomplex *z)
|
||||
{
|
||||
return bli_fabs( bli_creal( *z ) ) +
|
||||
bli_fabs( bli_cimag( *z ) );
|
||||
@@ -52,7 +52,7 @@
|
||||
-lf2c -lm (in that order)
|
||||
*/
|
||||
|
||||
/* Subroutine */ bla_double BLIS_EXPORT_BLAS PASTEF77(d,cabs1)(bla_dcomplex *z)
|
||||
/* Subroutine */ bla_double PASTEF77(d,cabs1)(bla_dcomplex *z)
|
||||
{
|
||||
return bli_fabs( bli_zreal( *z ) ) +
|
||||
bli_fabs( bli_zimag( *z ) );
|
||||
|
||||
Reference in New Issue
Block a user