6d9bd7171b
flistxattr is a function from Linux's xattr API that isn't available on FreeBSD and is mapped to FreeBSD syscalls. flistxattr mapping was missing since some port update. Reported by: Rick Miller <vrwmiller@gmail.com>
5 lines
256 B
C
5 lines
256 B
C
|
|
int fsetxattr(int fd, const char *name, const void *value, size_t size, int flags);
|
|
ssize_t flistxattr(int fd, char *namebuf, size_t size);
|
|
ssize_t fgetxattr(int fd, const char *name, void *value, size_t size);
|
|
int fremovexattr(int fd, const char *name);
|