fix build and run on OpenBSD (#6050)

This commit is contained in:
Fabien Romano
2026-01-15 21:46:03 +01:00
committed by GitHub
parent a92f07e1f1
commit c43139ebd6
3 changed files with 3 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ u32 Locale_IsRegionNative(void);
void _assert(const char* exp, const char* file, s32 line);
#elif defined(__linux__)
void __assert(const char* exp, const char* file, s32 line) __THROW;
#elif !defined(__APPLE__) && !defined(__SWITCH__)
#elif !defined(__APPLE__) && !defined(__SWITCH__) && !defined(__OpenBSD__)
void __assert(const char* exp, const char* file, s32 line);
#endif
#if defined(__APPLE__) && defined(NDEBUG)