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