hpsv - multiple declarations

Function hpsv

Solves a complex Hermitian indefinite system of linear equations AX=B, where A is held in packed storage.

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

Function hpsv

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