[libc-commits] [libc] [libc] at_quick_exit function implemented (PR #94317)

via libc-commits libc-commits at lists.llvm.org
Wed Jun 5 09:28:35 PDT 2024


================
@@ -0,0 +1,20 @@
+//===-- Implementation of at_quick_exit -----------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/stdlib/at_quick_exit.h"
+#include "src/__support/common.h"
+#include "src/stdlib/exit_handler.h"
+namespace LIBC_NAMESPACE {
----------------
lntue wrote:

nit: insert an empty line to separate includes and namespace.

https://github.com/llvm/llvm-project/pull/94317


More information about the libc-commits mailing list