Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
conf
/
pathconf.c
blob: 01e19c59b9e5212141bc97a780c0485118ad0105 [
file
] [
log
] [
blame
]
#include
<unistd.h>
long
pathconf
(
const
char
*
path
,
int
name
)
{
return
fpathconf
(-
1
,
name
);
}