[libc-commits] [libc] [libc] Implement system function (PR #211672)

Jeff Bailey via libc-commits libc-commits at lists.llvm.org
Fri Aug 7 02:43:07 PDT 2026


================
@@ -940,3 +940,80 @@ add_header_library(
     libc.src.__support.macros.config
     libc.include.sys_syscall
 )
+
+add_header_library(
+  rt_sigaction
+  HDRS
+    rt_sigaction.h
+  DEPENDS
+    libc.hdr.types.sigset_t
+    libc.src.__support.OSUtil.osutil
+    libc.src.__support.common
+    libc.src.__support.error_or
+    libc.src.__support.macros.config
+    libc.include.sys_syscall
+)
+
+add_header_library(
+  clone3
+  HDRS
+    clone3.h
+  DEPENDS
+    libc.hdr.types.pid_t
+    libc.src.__support.OSUtil.osutil
+    libc.src.__support.common
+    libc.src.__support.error_or
+    libc.src.__support.macros.config
+    libc.include.sys_syscall
+)
+
+add_header_library(
+  execve
----------------
kaladron wrote:

execve and execl look to be strays =)

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


More information about the libc-commits mailing list