We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16124a3 commit 214b434Copy full SHA for 214b434
libc/src/__support/OSUtil/baremetal/io.h
@@ -14,7 +14,7 @@
14
namespace LIBC_NAMESPACE {
15
16
// This is intended to be provided by the vendor.
17
-extern "C" void __llvm_libc_log_write(const char* msg, size_t len);
+extern "C" void __llvm_libc_log_write(const char *msg, size_t len);
18
19
void write_to_stderr(cpp::string_view msg) {
20
__llvm_libc_log_write(msg.data(), msg.size());
libc/src/__support/OSUtil/baremetal/quick_exit.h
@@ -14,9 +14,7 @@ namespace LIBC_NAMESPACE {
extern "C" void __llvm_libc_quick_exit(int status);
-void quick_exit(int status) {
- __llvm_libc_quick_exit(status);
-}
+void quick_exit(int status) { __llvm_libc_quick_exit(status); }
21
} // namespace LIBC_NAMESPACE
22
0 commit comments