Skip to content

Commit e30b2ec

Browse files
committed
dnrm2/snrm2: fix missing interface type
1 parent 545b4c3 commit e30b2ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stdlib_linalg_blas.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ module stdlib_linalg_blas
895895
!> NRM2 := sqrt( x'*x )
896896
interface nrm2
897897
#ifdef STDLIB_EXTERNAL_BLAS
898-
pure function dnrm2( n, x, incx )
898+
pure real(dp) function dnrm2( n, x, incx )
899899
import sp,dp,qp,ilp,lk
900900
implicit none(type,external)
901901
integer(ilp), intent(in) :: incx,n
@@ -908,7 +908,7 @@ module stdlib_linalg_blas
908908
module procedure stdlib_qnrm2
909909
#:endif
910910
#ifdef STDLIB_EXTERNAL_BLAS
911-
pure function snrm2( n, x, incx )
911+
pure real(sp) function snrm2( n, x, incx )
912912
import sp,dp,qp,ilp,lk
913913
implicit none(type,external)
914914
integer(ilp), intent(in) :: incx,n

0 commit comments

Comments
 (0)