hptrs - multiple declarations

Function hptrs

Solves a complex Hermitian indefinite system of linear equations AX=B, where A is held in packed storage, using the factorization computed by CHPTRF.

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

Function hptrs

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