File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
libc/src/__support/OSUtil/baremetal Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 14
14
namespace LIBC_NAMESPACE {
15
15
16
16
// This is intended to be provided by the vendor.
17
- extern " C" void __llvm_libc_log_write (const char * msg, size_t len);
17
+ extern " C" void __llvm_libc_log_write (const char * msg, size_t len);
18
18
19
19
void write_to_stderr (cpp::string_view msg) {
20
20
__llvm_libc_log_write (msg.data (), msg.size ());
Original file line number Diff line number Diff line change @@ -14,9 +14,7 @@ namespace LIBC_NAMESPACE {
14
14
// This is intended to be provided by the vendor.
15
15
extern " C" void __llvm_libc_quick_exit (int status);
16
16
17
- void quick_exit (int status) {
18
- __llvm_libc_quick_exit (status);
19
- }
17
+ void quick_exit (int status) { __llvm_libc_quick_exit (status); }
20
18
21
19
} // namespace LIBC_NAMESPACE
22
20
You can’t perform that action at this time.
0 commit comments