Function ssytrs_
Solves a real symmetric indefinite system of linear equations AX=B, using the factorization computed by SSPTRF.
					
			extern(C) void ssytrs_
			(
			
			  char* uplo,
			
			  int* n,
			
			  int* nrhs,
			
			  float* a,
			
			  int* lda,
			
			  int* ipiv,
			
			  float* b,
			
			  int* ldb,
			
			  int* info,
			
			  int uplo_len
			
			);