Commit aa065c6
committed
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)File tree
2 files changed
+9
-0
lines changed- libc-test/semver
- src/unix/linux_like/linux/gnu
2 files changed
+9
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
664 | 664 | | |
665 | 665 | | |
666 | 666 | | |
| 667 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1391 | 1391 | | |
1392 | 1392 | | |
1393 | 1393 | | |
| 1394 | + | |
| 1395 | + | |
| 1396 | + | |
| 1397 | + | |
| 1398 | + | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + | |
1394 | 1402 | | |
1395 | 1403 | | |
1396 | 1404 | | |
| |||
0 commit comments