hpevd - multiple declarations

Function hpevd

void hpevd (
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(double)* ap,
  double* w,
  std.complex.Complex!(double)* z,
  int ldz,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  int lrwork,
  int* iwork,
  int liwork,
  ref int info
);

Function hpevd

Computes all eigenvalues and, optionally, eigenvectors of a complex Hermitian matrix in packed storage. If eigenvectors are desired, it uses a divide and conquer algorithm.

void hpevd (
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(float)* ap,
  float* w,
  std.complex.Complex!(float)* z,
  int ldz,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  int lrwork,
  int* iwork,
  int liwork,
  ref int info
);