#ifndef STAT_H_INCLUDED #define STAT_H_INCLUDED #include #include #ifdef _WIN32 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) #define stat _stat #else #include #endif #endif /* STAT_H_INCLUDED */