1 #include <unistd.h>
2 
pathconf(const char * path,int name)3 long pathconf(const char* path, int name) {
4     return fpathconf(-1, name);
5 }
6