aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/chown.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/darwin/guts/chown.c')
-rw-r--r--ports/darwin/guts/chown.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/darwin/guts/chown.c b/ports/darwin/guts/chown.c
new file mode 100644
index 0000000..04414e7
--- /dev/null
+++ b/ports/darwin/guts/chown.c
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2011 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * int chown(const char *path, uid_t owner, gid_t group)
+ * int rc = -1;
+ */
+
+ rc = real_chown(path, owner, group);
+
+/* return rc;
+ * }
+ */