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