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