herfs - multiple declarations

Function herfs

void herfs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* af,
  int ldaf,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* x,
  int ldx,
  double* ferr,
  double* berr,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);

Function herfs

Improves the computed solution to a complex Hermitian indefinite system of linear equations AX=B, and provides forward and backward error bounds for the solution.

void herfs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* af,
  int ldaf,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* x,
  int ldx,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);