aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/getxattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/linux/guts/getxattr.c')
-rw-r--r--ports/linux/guts/getxattr.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/ports/linux/guts/getxattr.c b/ports/linux/guts/getxattr.c
new file mode 100644
index 0000000..fe8912d
--- /dev/null
+++ b/ports/linux/guts/getxattr.c
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2010 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * ssize_t getxattr(const char *pathname, const char *name, void *value, size_t size)
+ * ssize_t rc = -1;
+ */
+
+ /* suppress warnings */
+ (void) pathname;
+ (void) name;
+ (void) value;
+ (void) size;
+ errno = ENOTSUP;
+
+/* return rc;
+ * }
+ */