in pathconf, -1, not 0, means unsupported.. syncio presumably works, too.
[musl] / src / ctype / isupper.c
1 #include <ctype.h>
2 #undef isupper
3
4 int isupper(int c)
5 {
6         return (unsigned)c-'A' < 26;
7 }