Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #3372 - SteveLauC:execveat, r=JohnTitor
add execveat for glibc Addd [`execveat(2)`](https://man7.org/linux/man-pages/man2/execveat.2.html) for glibc ``` #include <linux/fcntl.h> /* Definition of AT_* constants */ #include <unistd.h> int execveat(int dirfd, const char *pathname, char *const _Nullable argv[], char *const _Nullable envp[], int flags); ``` This wrapper is not available on: 1. musl 2. uClibc 3. bionic (Android)
- Loading branch information