18 lines
280 B
C
18 lines
280 B
C
|
#ifndef _SYS_STAT_H
|
||
|
#define _SYS_STAT_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
#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
|