summaryrefslogtreecommitdiff
path: root/libc-test
diff options
context:
space:
mode:
authorAndrew Salmon <asalmon.mm@gmail.com>2017-06-07 16:26:42 -0700
committerAndrew Salmon <asalmon.mm@gmail.com>2017-06-07 16:26:42 -0700
commitc98b9f7d4ef5b4b08e2f6a1cc255568bbf34632c (patch)
tree962038648d2b3eee0838064273fcd738944834d0 /libc-test
parentf1b62c3f4a6f7551ecacc4ca7538a4ca94a878a7 (diff)
downloadrust-libc-c98b9f7d4ef5b4b08e2f6a1cc255568bbf34632c.tar.gz
add a number of syscalls
vfork, wait4, getresuid, getresgid, personality, vhangup, swapon, swapoff, getdomainname, setdomainname, iopl, ioperm
Diffstat (limited to 'libc-test')
-rw-r--r--libc-test/build.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 0fad65ad3f..8763fb9465 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -193,6 +193,9 @@ fn main() {
cfg.header("sys/sendfile.h");
cfg.header("sys/vfs.h");
cfg.header("sys/syscall.h");
+ cfg.header("sys/personality.h");
+ cfg.header("sys/swap.h");
+ cfg.header("sys/io.h");
if !uclibc {
cfg.header("sys/sysinfo.h");
}