17 lines
267 B
C++
17 lines
267 B
C++
|
#include <iostream>
|
||
|
#include <cstdlib>
|
||
|
#include <string>
|
||
|
#include <unistd.h>
|
||
|
#include "error.h"
|
||
|
using namespace std;
|
||
|
|
||
|
void error(string msg) {
|
||
|
cerr << msg << endl;
|
||
|
}
|
||
|
|
||
|
void stop(string msg) {
|
||
|
cerr << msg << endl;
|
||
|
usleep(3000000);
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|