summaryrefslogtreecommitdiff
path: root/libc-test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-07-23 15:18:51 +0000
committerbors <bors@rust-lang.org>2017-07-23 15:18:51 +0000
commit0b7abd9bb319cad68bda31305086f8cf478573c9 (patch)
tree4a049b04a723b0de3a7ecf15be159d3a243e8c21 /libc-test
parent9bbfe4b0ee7cabd0455a1429c2fb37d6a7ef86fb (diff)
parent858d47cd9553cbcffa07d9717ab35e8d7bd3bfac (diff)
downloadrust-libc-0b7abd9bb319cad68bda31305086f8cf478573c9.tar.gz
Auto merge of #689 - lucab:ups/fexecve, r=alexcrichton
unix: add fexecve() Add missing fexecve() - execute program specified via file descriptor. Reference: http://pubs.opengroup.org/onlinepubs/9699919799/functions/fexecve.html
Diffstat (limited to 'libc-test')
-rw-r--r--libc-test/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index d54202792b..29c8ceee3a 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -461,7 +461,8 @@ fn main() {
"execv" | // crazy stuff with const/mut
"execve" |
"execvp" |
- "execvpe" => true,
+ "execvpe" |
+ "fexecve" => true,
"getrlimit" | "getrlimit64" | // non-int in 1st arg
"setrlimit" | "setrlimit64" | // non-int in 1st arg