[libc-commits] [libc] [libc][i386] syscall support (PR #114264)
via libc-commits
libc-commits at lists.llvm.org
Thu Oct 31 10:01:00 PDT 2024
================
@@ -0,0 +1,87 @@
+//===---------- inline implementation of i386 syscalls ------------* 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_LINUX_I386_SYSCALL_H
+#define LLVM_LIBC_SRC___SUPPORT_OSUTIL_LINUX_I386_SYSCALL_H
+
+#include "src/__support/common.h"
+
+namespace LIBC_NAMESPACE_DECL {
----------------
lntue wrote:
nit: add `#include "src/__support/macros/config.h"` for `LIBC_NAMESPACE_DECL` definition.
https://github.com/llvm/llvm-project/pull/114264
More information about the libc-commits
mailing list