ggqrf - multiple declarations

Function ggqrf

void ggqrf (
  int n,
  int m,
  int p,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* taua,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* taub,
  std.complex.Complex!(double)* work,
  int lwork,
  ref int info
);

Function ggqrf

void ggqrf (
  int n,
  int m,
  int p,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* taua,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* taub,
  std.complex.Complex!(float)* work,
  int lwork,
  ref int info
);

Function ggqrf

void ggqrf (
  int n,
  int m,
  int p,
  double* a,
  int lda,
  double* taua,
  double* b,
  int ldb,
  double* taub,
  double* work,
  int lwork,
  ref int info
);

Function ggqrf

Computes a generalized QR factorization of a pair of matrices.

void ggqrf (
  int n,
  int m,
  int p,
  float* a,
  int lda,
  float* taua,
  float* b,
  int ldb,
  float* taub,
  float* work,
  int lwork,
  ref int info
);