mlibc: Declare chmod.
* include/sys/stat.h (mode_t, chmod): Declare.
This commit is contained in:
parent
4ff63354a7
commit
5f7f2c9894
|
@ -23,7 +23,15 @@
|
||||||
#if __GNUC__ && POSIX
|
#if __GNUC__ && POSIX
|
||||||
#undef __MES_SYS_STAT_H
|
#undef __MES_SYS_STAT_H
|
||||||
#include_next <sys/stat.h>
|
#include_next <sys/stat.h>
|
||||||
#endif // (__GNUC__ && POSIX)
|
|
||||||
|
#else // !(__GNUC__ && POSIX)
|
||||||
|
|
||||||
|
#ifndef __MES_MODE_T
|
||||||
|
#define __MES_MODE_T
|
||||||
|
typedef int mode_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int chmod (char const *file_name, mode_t mode);
|
||||||
|
|
||||||
struct stat {
|
struct stat {
|
||||||
int st_dev;
|
int st_dev;
|
||||||
|
@ -41,5 +49,7 @@ struct stat {
|
||||||
int st_ctime;
|
int st_ctime;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // !(__GNUC__ && POSIX)
|
||||||
|
|
||||||
#endif // __MES_SYS_STAT_H
|
#endif // __MES_SYS_STAT_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue