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