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