
#include "f2c-bridge.h"
#include "blas_enum.h"
void BLAS_ztrsv_d_x(enum blas_order_type order, enum blas_uplo_type uplo,
		    enum blas_trans_type trans, enum blas_diag_type diag,
		    int n, const void *alpha, const double *T, int ldt,
		    void *x, int incx, enum blas_prec_type prec);


extern void FC_FUNC_(blas_ztrsv_d_x, BLAS_ZTRSV_D_X)
 
  (int *uplo, int *trans, int *diag, int *n, const void *alpha,
   const double *T, int *ldt, void *x, int *incx, int *prec) {
  BLAS_ztrsv_d_x(blas_colmajor, (enum blas_uplo_type) *uplo,
		 (enum blas_trans_type) *trans, (enum blas_diag_type) *diag,
		 *n, alpha, T, *ldt, x, *incx, (enum blas_prec_type) *prec);
}

