misc.cpp 337 B

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