1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #if defined(CONFIG_64BIT) && defined(__GNUC__) && !defined(__clang__)
- const char *__asan_default_options(void)
- {
-
- return "leak_check_at_exit=0:";
- }
- #endif
- #ifdef CONFIG_HAS_SDL
- const char *__lsan_default_suppressions(void)
- {
-
- return "leak:libX11\nleak:libSDL2\n";
- }
- #endif
- #ifdef CONFIG_ASAN_NOP_DLCLOSE
- int dlclose(void *handler)
- {
- return 0;
- }
- #endif
|