6 lines
74 B
C++
6 lines
74 B
C++
#include <cstdlib>
|
|
|
|
void problem_occured()
|
|
{
|
|
std::exit(EXIT_FAILURE);
|
|
}
|