Problemas com srand (), C ++

Estou tentando escrever um programa que gera números pseudo-aleatórios usando uma semente. No entanto, estou tendo problemas.

Eu recebo este erro

39 C:\Dev-Cpp\srand_prg.cpp void value not ignored as it ought to be 

Usando este código

#include <iostream>
#include <iomanip>
#include <sstream> 
#include <limits>
#include <stdio.h>

using namespace std ;

int main(){
    int rand_int;
    string close ;

    close == "y" ;

    cout << endl << endl ;
    cout << "\t ___________________________________" << endl ;
    cout << "\t|                                   |" << endl ;
    cout << "\t|   Pseudorandom Number Game!       |" << endl ;
    cout << "\t|___________________________________|" << endl ;
    cout << endl << endl ;

    while ( close != "y" ){

        rand_int = srand(9);
        cout << rand_int << endl ;

        cout << "  Do you wish to exit the program? [y/n]     " ;
        cin >> close ; }

}

questionAnswers(5)

yourAnswerToTheQuestion