Sign in
mojo
/
mojo
/
6fd33f6a3d027e12c5bfcbd8c43fe01c15b76e92
/
.
/
fusl
/
src
/
conf
/
pathconf.c
blob: c8fa7a857a2f800614a91a58864d37b8b4d7f644 [
file
] [
log
] [
blame
]
#include
<unistd.h>
long
pathconf
(
const
char
*
path
,
int
name
)
{
return
fpathconf
(-
1
,
name
);
}