1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

Kernel: Group C++ ABI functions together

As suggested in #3096.
This commit is contained in:
Ben Wiederhake 2020-08-11 23:37:27 +02:00 committed by Andreas Kling
parent ff16da8c77
commit 8a41ce5cc7
2 changed files with 7 additions and 6 deletions

View file

@ -306,4 +306,10 @@ void free(void* p)
{
ASSERT_NOT_REACHED();
}
extern "C" int __cxa_atexit(void (*)(void*), void*, void*)
{
ASSERT_NOT_REACHED();
return 0;
}
}