libposix: drafted chdir, fchdir and mkdir
This commit is contained in:
@ -89,6 +89,9 @@ typedef unsigned long clock_t;
|
||||
extern void POSIX_exit(int code) __attribute__((noreturn));
|
||||
extern int POSIX_chmod(int *errnop, const char *path, int mode);
|
||||
extern int POSIX_fchmodat(int *errnop, int fd, const char *path, long mode, int flag);
|
||||
extern int POSIX_chdir(int *errnop, const char *path);
|
||||
extern int POSIX_fchdir(int *errnop, int fd);
|
||||
extern int POSIX_mkdir(int *errnop, const char *path, int mode);
|
||||
extern int POSIX_close(int *errnop, int file);
|
||||
extern int POSIX_execve(int *errnop, const char *name, char * const*argv, char * const*env);
|
||||
extern int POSIX_fork(int *errnop);
|
||||
|
Reference in New Issue
Block a user