aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/pseudo_wrappers.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/linux/pseudo_wrappers.c')
-rw-r--r--ports/linux/pseudo_wrappers.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ports/linux/pseudo_wrappers.c b/ports/linux/pseudo_wrappers.c
index 0e9a41f..e7f79f8 100644
--- a/ports/linux/pseudo_wrappers.c
+++ b/ports/linux/pseudo_wrappers.c
@@ -42,3 +42,10 @@ int
pseudo_mknodat(int dirfd, const char *path, mode_t mode, dev_t dev) {
return real___xmknodat(_MKNOD_VER, dirfd, path, mode, &dev);
}
+
+int pseudo_capset(cap_user_header_t hdrp, const cap_user_data_t datap) {
+ (void)hdrp;
+ (void)datap;
+
+ return 0;
+}