mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-27 15:04:25 +00:00
19 lines
379 B
C
19 lines
379 B
C
#ifndef _SYS_STAT_H
|
|
#define _SYS_STAT_H
|
|
|
|
typedef unsigned int _dev_t;
|
|
typedef unsigned short _ino_t;
|
|
typedef unsigned short _mode_t;
|
|
typedef int _off_t;
|
|
|
|
#define dev_t _dev_t
|
|
#define ino_t _ino_t
|
|
#define mode_t _mode_t
|
|
#define off_t _off_t
|
|
|
|
int mkdir(const char *path, mode_t mode);
|
|
int remove(const char *pathname);
|
|
int rename(const char *oldpath, const char *newpath);
|
|
|
|
#endif
|