diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-15 08:31:44 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-15 08:31:44 -0400 |
commit | 7650390de8f72822ec0d4a9fb5b52efcf0be4698 (patch) | |
tree | 29b869a26cb56d1bec5065768bd25b5f837b9e0f /include | |
parent | 0d4d1a96e4fd827267250e469affc7ebfc44324f (diff) | |
download | musl-7650390de8f72822ec0d4a9fb5b52efcf0be4698.tar.gz musl-7650390de8f72822ec0d4a9fb5b52efcf0be4698.tar.xz musl-7650390de8f72822ec0d4a9fb5b52efcf0be4698.zip |
add missing xattr functions
not sure why these were originally omitted..
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/xattr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/xattr.h b/include/sys/xattr.h index 2801cb85..f926493c 100644 --- a/include/sys/xattr.h +++ b/include/sys/xattr.h @@ -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 } |