| 16 | extern "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 |
nothing calls this directly
no test coverage detected