[libc-commits] [libc] [libc][uefi] add crt1 (PR #132150)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Wed Mar 26 13:41:34 PDT 2025
================
@@ -0,0 +1,96 @@
+//===---------- UEFI implementation of error utils ------------*- 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___SUPPORT_OSUTIL_UEFI_ERROR_H
+#define LLVM_LIBC_SRC___SUPPORT_OSUTIL_UEFI_ERROR_H
+
+#include "errno.h"
+#include "include/llvm-libc-types/EFI_STATUS.h"
+#include "limits.h"
+#include "src/__support/macros/config.h"
----------------
michaelrj-google wrote:
formatting, and also fix these includes. I don't see `errno.h` or `limits.h` in this folder so you should probably specify the full path for those.
https://github.com/llvm/llvm-project/pull/132150
More information about the libc-commits
mailing list