changed to using sstream
This commit is contained in:
parent
86fa476c67
commit
153b80440c
22 changed files with 253 additions and 31 deletions
|
|
@ -29,7 +29,7 @@
|
|||
#endif
|
||||
|
||||
#include <signal.h>
|
||||
#include <stream.h>
|
||||
#include <iostream>
|
||||
|
||||
// --- Global variables - but don't know what else to do - MS ---
|
||||
bool arret_demande = false;
|
||||
|
|
@ -44,7 +44,7 @@ void signal_handler( int sig )
|
|||
// --- On veut la paix, jusqu'a la fin ---
|
||||
signal( SIGINT, SIG_IGN );
|
||||
signal( SIGQUIT, SIG_IGN );
|
||||
cerr << "Ctrl C entered ... closing down" << endl ;
|
||||
std::cerr << "Ctrl C entered ... closing down" << std::endl ;
|
||||
arret_demande = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue