aboutgitcodelistschat:MatrixIRC
path: root/demo/fremovexattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'demo/fremovexattr.c')
-rw-r--r--demo/fremovexattr.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/demo/fremovexattr.c b/demo/fremovexattr.c
new file mode 100644
index 0000000..1483975
--- /dev/null
+++ b/demo/fremovexattr.c
@@ -0,0 +1,11 @@
+#include <sys/stat.h>
+#include <sys/xattr.h>
+#include <fcntl.h>
+#include <string.h>
+
+int main(int argc, char **argv)
+{
+ int fd = open(argv[1], O_RDONLY);
+
+ return fremovexattr(fd, argv[2]);
+}