repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
check for kernel support before allowing robust mutex creation
[musl.git]
/
src
/
conf
/
pathconf.c
blob
01e19c59b9e5212141bc97a780c0485118ad0105
1
#include <unistd.h>
2
3
long
pathconf
(
const char
*
path
,
int
name
)
4
{
5
return
fpathconf
(-
1
,
name
);
6
}