Luna/libc/include/sys/stat.h
apio d66506256d
All checks were successful
continuous-integration/drone/push Build is passing
kernel/VFS+libc: Introduce modes
2023-03-12 16:55:46 +01:00

22 lines
289 B
C

/* sys/stat.h: stat() routine and friends. */
#ifndef _SYS_STAT_H
#define _SYS_STAT_H
#include <bits/modes.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