MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / LLVM_LIBC_FUNCTION

Function LLVM_LIBC_FUNCTION

system/lib/llvm-libc/src/stdlib/exit.cpp:18–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16extern "C" void __cxa_finalize(void *);
17
18[[noreturn]] LLVM_LIBC_FUNCTION(void, exit, (int status)) {
19 __cxa_finalize(nullptr);
20 internal::exit(status);
21}
22
23} // namespace LIBC_NAMESPACE_DECL

Callers

nothing calls this directly

Calls 2

__cxa_finalizeFunction · 0.70
exitFunction · 0.50

Tested by

no test coverage detected