ensure that musl is compiled as C99 code & XSI option is available in headers
[musl] / src / misc / realpath.c
1 #include <stdlib.h>
2
3 char *realpath(const char *filename, char *resolved)
4 {
5         return 0;
6 }