Serenity Operating System
at master 18 lines 337 B view raw
1/* 2 * Copyright (c) 2020, the SerenityOS developers. 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#include "misc.h" 8#include <AK/Format.h> 9 10extern "C" { 11char const* __cxa_demangle(char const*, void*, void*, int*) 12{ 13 dbgln("WARNING: __cxa_demangle not supported"); 14 return ""; 15} 16 17void* __dso_handle __attribute__((__weak__)); 18}