diff options
Diffstat (limited to 'minion/src/util.cpp')
-rw-r--r-- | minion/src/util.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/minion/src/util.cpp b/minion/src/util.cpp index 540a20c..15cf840 100644 --- a/minion/src/util.cpp +++ b/minion/src/util.cpp @@ -37,4 +37,10 @@ auto streq(const char *str_one, const char *str_two) noexcept -> bool return strcmp(str_one, str_two) == 0; } +void quit() noexcept +{ + while (true) + ; +} + } // namespace util |