127      SUBROUTINE zposv( UPLO, N, NRHS, A, LDA, B, LDB, INFO )
 
  135      INTEGER            INFO, LDA, LDB, N, NRHS
 
  138      COMPLEX*16         A( LDA, * ), B( LDB, * )
 
  158      IF( .NOT.lsame( uplo, 
'U' ) .AND.
 
  159     $    .NOT.lsame( uplo, 
'L' ) ) 
THEN 
  161      ELSE IF( n.LT.0 ) 
THEN 
  163      ELSE IF( nrhs.LT.0 ) 
THEN 
  165      ELSE IF( lda.LT.max( 1, n ) ) 
THEN 
  167      ELSE IF( ldb.LT.max( 1, n ) ) 
THEN 
  171         CALL xerbla( 
'ZPOSV ', -info )
 
  177      CALL zpotrf( uplo, n, a, lda, info )
 
  182         CALL zpotrs( uplo, n, nrhs, a, lda, b, ldb, info )
 
 
subroutine xerbla(srname, info)
subroutine zposv(uplo, n, nrhs, a, lda, b, ldb, info)
ZPOSV computes the solution to system of linear equations A * X = B for PO matrices
subroutine zpotrf(uplo, n, a, lda, info)
ZPOTRF
subroutine zpotrs(uplo, n, nrhs, a, lda, b, ldb, info)
ZPOTRS