add missing xattr functions

not sure why these were originally omitted..
This commit is contained in:
Rich Felker
2012-08-15 08:31:44 -04:00
parent 0d4d1a96e4
commit 7650390de8
2 changed files with 18 additions and 0 deletions
+3
View File
@@ -20,6 +20,9 @@ ssize_t flistxattr(int filedes, char *, size_t);
int setxattr(const char *, const char *, const void *, size_t, int);
int lsetxattr(const char *, const char *, const void *, size_t, int);
int fsetxattr(int, const char *, const void *, size_t, int);
int removexattr(const char *, const char *);
int lremovexattr(const char *, const char *);
int fremovexattr(int, const char *);
#ifdef __cplusplus
}