update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / src / conf / pathconf.c
1 #include <unistd.h>
2
3 long pathconf(const char *path, int name)
4 {
5         return fpathconf(-1, name);
6 }