#ifndef FILE_INCL_H #define FILE_INCL_H #ifdef INCL_SYS_STAT_H # include #endif #ifdef INCL_SYS_DIR_H # include #endif #ifndef linux #ifdef INCL_SYS_DIRENT_H # include #endif #endif #ifdef INCL_DIRENT_H # include #endif #ifdef INCL_SYS_FILIO_H # include #endif #ifdef INCL_SYS_SOCKIO_H # include #endif #ifdef INCL_SYS_MKDEV_H # include #endif #ifdef INCL_SYS_RESOURCE_H # include #endif #ifdef INCL_SYS_RUSAGE_H # include #endif #ifdef INCL_CRYPT_H # include #endif #ifdef WIN32 # include # include # define OS_mkdir(x, y) mkdir(x) # define lstat(x, y) stat(x, y) #else # define OS_mkdir(x, y) mkdir(x, y) #endif #endif