in pathconf, -1, not 0, means unsupported.. syncio presumably works, too.
[musl] / src / exit / abort.c
1 #include <stdlib.h>
2 #include <signal.h>
3
4 void abort(void)
5 {
6         raise(SIGABRT);
7         for (;;);
8 }