hesv - multiple declarations

Function hesv

Solves a complex Hermitian indefinite system of linear equations AX=B.

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

Function hesv

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