/* sys/stat.h: stat() routine and friends. */ #ifndef _SYS_STAT_H #define _SYS_STAT_H #include #include #ifdef __cplusplus extern "C" { #endif /* Create a directory. */ int mkdir(const char* path, mode_t mode); #ifdef __cplusplus } #endif #endif