summaryrefslogtreecommitdiff
path: root/include/sys/xattr.h
AgeCommit message (Collapse)AuthorFilesLines
2018-01-09add additional uapi guards for Linux kernel header filesHauke Mehrtens1-0/+2
With Linux kernel 4.16 it will be possible to guard more parts of the Linux header files from a libc. Make use of this in musl to guard all the structures and other definitions from the Linux header files which are also defined by the header files provided by musl. This will make it possible to compile source files which include both the libc headers and the kernel userspace headers. This extends the definitions done in commit 04983f227238 ("make netinet/in.h suppress clashing definitions from kernel headers")
2016-10-20remove parameter names from public headersRich Felker1-2/+2
inclusion of these names was unintentional and in most cases is a namespace violation. Daniel Sabogal tracked down and reported these.
2012-08-15add missing xattr functionsRich Felker1-0/+3
not sure why these were originally omitted..
2012-07-23add extended attributes syscallsRich Felker1-0/+27
based on patch by orc and Isaac Dunham, with some fixes.