Luna/libc/include/sys/stat.h

22 lines
289 B
C
Raw Normal View History

2023-03-12 14:32:09 +00:00
/* sys/stat.h: stat() routine and friends. */
#ifndef _SYS_STAT_H
#define _SYS_STAT_H
2023-03-12 15:55:46 +00:00
#include <bits/modes.h>
2023-03-12 14:32:09 +00:00
#include <sys/types.h>
#ifdef __cplusplus
extern "C"
{
#endif
/* Create a directory. */
int mkdir(const char* path, mode_t mode);
#ifdef __cplusplus
}
#endif
#endif