hegvd - multiple declarations

Function hegvd

void hegvd (
  int itype,
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* b,
  int ldb,
  double* w,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  int lrwork,
  int* iwork,
  int liwork,
  ref int info
);

Function hegvd

Computes all eigenvalues and the eigenvectors of a generalized Hermitian-definite generalized eigenproblem, Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. If eigenvectors are desired, it uses a divide and conquer algorithm.

void hegvd (
  int itype,
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* b,
  int ldb,
  float* w,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  int lrwork,
  int* iwork,
  int liwork,
  ref int info
);