[libc-commits] [libc] [libc] implement quick exit function (PR #93621)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Wed May 29 17:12:00 PDT 2024


================
@@ -0,0 +1,20 @@
+//===-- Implementation header for quick_exit -------------------*- C++ -*-===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H
+#define LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H
+
+#include <stdlib.h>
----------------
nickdesaulniers wrote:

Do we need anything from stdlib to satisfy this declaration? I don't think so. Can you remove it?

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


More information about the libc-commits mailing list