pbsv - multiple declarations

Function pbsv

Solves a symmetric positive definite banded system of linear equations AX=B.

void pbsv (
  char uplo,
  int n,
  int kd,
  int nrhs,
  float* ab,
  int ldab,
  float* b,
  int ldb,
  ref int info
);

Function pbsv

void pbsv (
  char uplo,
  int n,
  int kd,
  int nrhs,
  double* ab,
  int ldab,
  double* b,
  int ldb,
  ref int info
);

Function pbsv

void pbsv (
  char uplo,
  int n,
  int kd,
  int nrhs,
  std.complex.Complex!(float)* ab,
  int ldab,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function pbsv

void pbsv (
  char uplo,
  int n,
  int kd,
  int nrhs,
  std.complex.Complex!(double)* ab,
  int ldab,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);