diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-10-20 17:04:37 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-10-20 17:04:37 -0400 |
commit | 2ed4e9d9279117ffa50294095e172804cd1b68e5 (patch) | |
tree | 15390dcb1833121aadfe8458563135937aaec3a4 /include/sys/xattr.h | |
parent | 4b8f94c2501e6fea3db631b73b0c91e34e2134cf (diff) | |
download | musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.tar.gz musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.tar.xz musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.zip |
remove parameter names from public headers
inclusion of these names was unintentional and in most cases is a namespace violation. Daniel Sabogal tracked down and reported these.
Diffstat (limited to 'include/sys/xattr.h')
-rw-r--r-- | include/sys/xattr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/xattr.h b/include/sys/xattr.h index f926493c..6479fcc6 100644 --- a/include/sys/xattr.h +++ b/include/sys/xattr.h @@ -13,10 +13,10 @@ extern "C" { ssize_t getxattr(const char *, const char *, void *, size_t); ssize_t lgetxattr(const char *, const char *, void *, size_t); -ssize_t fgetxattr(int filedes, const char *, void *, size_t); +ssize_t fgetxattr(int, const char *, void *, size_t); ssize_t listxattr(const char *, char *, size_t); ssize_t llistxattr(const char *, char *, size_t); -ssize_t flistxattr(int filedes, char *, size_t); +ssize_t flistxattr(int, 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); |