Luna/libc/include/sys/stat.h
apio 682d3c753e
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add mkdir()
2023-03-12 15:32:09 +01:00

21 lines
265 B
C

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