aboutgitcodelistschat:MatrixIRC
path: root/demo/fremovexattr.c
blob: 148397553cf759a037dee5e8c3fa60bb9357abdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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]);
}