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 1414namespace LIBC_NAMESPACE {
1515
1616// 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);
1818
1919void write_to_stderr (cpp::string_view msg) {
2020 __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 {
1414// This is intended to be provided by the vendor.
1515extern " C" void __llvm_libc_quick_exit (int status);
1616
17- void quick_exit (int status) {
18- __llvm_libc_quick_exit (status);
19- }
17+ void quick_exit (int status) { __llvm_libc_quick_exit (status); }
2018
2119} // namespace LIBC_NAMESPACE
2220
You can’t perform that action at this time.
0 commit comments