aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/getxattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/darwin/guts/getxattr.c')
-rw-r--r--ports/darwin/guts/getxattr.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/darwin/guts/getxattr.c b/ports/darwin/guts/getxattr.c
new file mode 100644
index 0000000..16f0993
--- /dev/null
+++ b/ports/darwin/guts/getxattr.c
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2011 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * ssize_t getxattr(const char *pathname, const char *name, void *value, size_t size, u_int32_t position, int options)
+ * ssize_t rc = -1;
+ */
+
+ rc = real_getxattr(pathname, name, value, size, position, options);
+
+/* return rc;
+ * }
+ */