Blame


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