aboutsummaryrefslogtreecommitdiffstats
path: root/guts/chown.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/chown.c')
-rw-r--r--guts/chown.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/guts/chown.c b/guts/chown.c
new file mode 100644
index 0000000..0a82989
--- /dev/null
+++ b/guts/chown.c
@@ -0,0 +1,11 @@
+/*
+ * static int
+ * wrap_chown(const char *path, uid_t owner, gid_t group) {
+ * int rc = -1;
+ */
+
+ rc = wrap_fchownat(AT_FDCWD, path, owner, group, 0);
+
+/* return rc;
+ * }
+ */