1 2 3 4 5 6 7 8 9 10 11 12
#include "config.h" #include <_ansi.h> #include <_syslist.h> #include <sys/types.h> #include <sys/stat.h> #include <errno.h> int stat(const char *__restrict file, struct stat *__restrict st) { errno = ENOSYS; return -1; }