pathconf.c 96 B

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