#ifndef _SYS_STAT_H #define _SYS_STAT_H #include #ifdef __cplusplus extern "C" { #endif /* Creates a new directory at the path pathname. FIXME: For now, mode is ignored. */ int mkdir(const char* pathname, mode_t mode); #ifdef __cplusplus } #endif #endif