hetrs - multiple declarations

Function hetrs

void hetrs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);

Function hetrs

Solves a complex Hermitian indefinite system of linear equations AX=B, using the factorization computed by CHPTRF.

void hetrs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);