musl-tcc/src/conf/pathconf.c

7 lines
96 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <unistd.h>
long pathconf(const char *path, int name)
{
return fpathconf(-1, name);
}