2020-10-10 18:17:49 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-10-10 18:17:49 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "misc.h"
|
2021-03-12 19:29:37 +03:00
|
|
|
#include <AK/Format.h>
|
2020-10-10 18:17:49 +03:00
|
|
|
|
|
|
|
extern "C" {
|
2022-04-01 20:58:27 +03:00
|
|
|
char const* __cxa_demangle(char const*, void*, void*, int*)
|
2020-10-10 18:17:49 +03:00
|
|
|
{
|
2021-01-09 20:51:44 +03:00
|
|
|
dbgln("WARNING: __cxa_demangle not supported");
|
2020-10-10 18:17:49 +03:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2020-10-17 14:39:36 +03:00
|
|
|
void* __dso_handle __attribute__((__weak__));
|
2020-10-10 18:17:49 +03:00
|
|
|
}
|