aboutsummaryrefslogtreecommitdiff
path: root/src/commands/quit.cpp
blob: c2a68e754611a3e9e6f919f1f51ae7ff20a1db42 (plain)
1
2
3
4
5
6
7
8
#include "quit.hpp"

#include <cstdlib>

void QuitCommand::execute() noexcept
{
	exit(EXIT_SUCCESS);
}