Blame


1 83f0f95a 2022-09-29 op #include_next "unistd.h"
2 83f0f95a 2022-09-29 op
3 83f0f95a 2022-09-29 op #include "../config.h"
4 83f0f95a 2022-09-29 op
5 83f0f95a 2022-09-29 op #if !HAVE_PLEGDE
6 83f0f95a 2022-09-29 op int pledge(const char *, const char *);
7 83f0f95a 2022-09-29 op #endif
8 83f0f95a 2022-09-29 op
9 83f0f95a 2022-09-29 op #if !HAVE_UNVEIL
10 83f0f95a 2022-09-29 op int unveil(const char *, const char *);
11 83f0f95a 2022-09-29 op #endif
12 83f0f95a 2022-09-29 op
13 83f0f95a 2022-09-29 op #if !HAVE_GETDTABLECOUNT
14 83f0f95a 2022-09-29 op int getdtablecount(void);
15 83f0f95a 2022-09-29 op #endif
16 83f0f95a 2022-09-29 op
17 83f0f95a 2022-09-29 op #if !HAVE_GETDTABLESIZE
18 83f0f95a 2022-09-29 op int getdtablesize(void);
19 83f0f95a 2022-09-29 op #endif
20 e2764fac 2022-09-30 op
21 e2764fac 2022-09-30 op #if !HAVE_SETRESGID
22 e2764fac 2022-09-30 op int setresgid(gid_t, gid_t, gid_t);
23 e2764fac 2022-09-30 op #endif
24 e2764fac 2022-09-30 op
25 e2764fac 2022-09-30 op #if !HAVE_SETRESUID
26 e2764fac 2022-09-30 op int setresuid(uid_t, uid_t, uid_t);
27 e2764fac 2022-09-30 op #endif