Fix missing comma on continued line

EXTERNAL declaration of subroutines missed a comma before the continuation line,
causing a strange run-together name to appear in the object when compiled with ifort.
This commit is contained in:
Martin Kroeker 2017-02-22 08:39:06 +01:00 committed by GitHub
parent 69f4e8b86c
commit 09b240f1ef
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@
EXTERNAL LSAME, ILAENV, IZAMAX, DLAMCH, DZASUM
* ..
* .. External Subroutines ..
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS,
$ ZGEMM, DLABAD, ZLASET
* ..
* .. Intrinsic Functions ..