[libc-commits] [libc] a6abcfe - [libc] fix header list for x86_64
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Mon Oct 10 16:06:02 PDT 2022
Author: Michael Jones
Date: 2022-10-10T16:05:53-07:00
New Revision: a6abcfee8a28d6eaa89bb48072e62f89ebc9ec72
URL: https://github.com/llvm/llvm-project/commit/a6abcfee8a28d6eaa89bb48072e62f89ebc9ec72
DIFF: https://github.com/llvm/llvm-project/commit/a6abcfee8a28d6eaa89bb48072e62f89ebc9ec72.diff
LOG: [libc] fix header list for x86_64
Some headers hadn't been added, this fixes that and improves the
ordering.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D135629
Added:
Modified:
libc/config/linux/x86_64/headers.txt
Removed:
################################################################################
diff --git a/libc/config/linux/x86_64/headers.txt b/libc/config/linux/x86_64/headers.txt
index a745bccbacb5..145143a4e6bf 100644
--- a/libc/config/linux/x86_64/headers.txt
+++ b/libc/config/linux/x86_64/headers.txt
@@ -1,7 +1,9 @@
set(TARGET_PUBLIC_HEADERS
libc.include.assert_h
libc.include.ctype
+ libc.include.dirent
libc.include.errno
+ libc.include.fcntl
libc.include.fenv
libc.include.inttypes
libc.include.math
@@ -11,11 +13,16 @@ set(TARGET_PUBLIC_HEADERS
libc.include.stdio
libc.include.stdlib
libc.include.string
+ libc.include.threads
+ libc.include.time
+ libc.include.unistd
+
libc.include.sys_ioctl
libc.include.sys_mman
libc.include.sys_random
+ libc.include.sys_resource
+ libc.include.sys_stat
libc.include.sys_syscall
- libc.include.threads
- libc.include.time
- libc.include.unistd
+ libc.include.sys_utsname
+ libc.include.sys_wait
)
More information about the libc-commits
mailing list