add OpenBSD to platforms using exit(3)

This commit is contained in:
thfrwn
2024-06-18 21:32:31 -04:00
committed by Tamás Bálint Misius
parent c174833734
commit 605c98c9f8

View File

@@ -157,7 +157,7 @@ static void BlueScreen(String detailMessage, std::optional<std::vector<String>>
}
// Don't use Platform::Exit, we're practically zombies at this point anyway.
#if defined(__MINGW32__) || defined(__APPLE__) || defined(__EMSCRIPTEN__)
#if defined(__MINGW32__) || defined(__APPLE__) || defined(__EMSCRIPTEN__) || defined(__OpenBSD__)
// Come on...
exit(-1);
#else