gbsv - multiple declarations

Function gbsv

Solves a general banded system of linear equations AX=B.

void gbsv (
  int n,
  int kl,
  int ku,
  int nrhs,
  float* ab,
  int ldab,
  int* ipiv,
  float* b,
  int ldb,
  ref int info
);

Function gbsv

void gbsv (
  int n,
  int kl,
  int ku,
  int nrhs,
  double* ab,
  int ldab,
  int* ipiv,
  double* b,
  int ldb,
  ref int info
);

Function gbsv

void gbsv (
  int n,
  int kl,
  int ku,
  int nrhs,
  std.complex.Complex!(float)* ab,
  int ldab,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function gbsv

void gbsv (
  int n,
  int kl,
  int ku,
  int nrhs,
  std.complex.Complex!(double)* ab,
  int ldab,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);