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