Skip to content

Commit ff119dc

Browse files
committed
fixed more formatting
1 parent fe014fd commit ff119dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libc/src/__support/OSUtil/linux/exit.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ namespace LIBC_NAMESPACE::internal {
1717
#ifdef LIBC_TARGET_ARCH_IS_X86
1818
[[clang::no_stack_protector]]
1919
#endif
20-
[[noreturn]] void exit(int status) {
20+
[[noreturn]] void
21+
exit(int status) {
2122
for (;;) {
2223
LIBC_NAMESPACE::syscall_impl<long>(SYS_exit_group, status);
2324
LIBC_NAMESPACE::syscall_impl<long>(SYS_exit, status);

libc/src/stdlib/quick_exit.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#ifndef LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H
1010
#define LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H
1111

12-
1312
namespace LIBC_NAMESPACE {
1413

1514
[[noreturn]] void quick_exit(int status);

0 commit comments

Comments
 (0)