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