2018-05-02 06:20:06 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <syscall.h>
|
2018-12-10 04:09:27 +03:00
|
|
|
#include <syscall_nums.h>
|
2018-07-18 04:45:42 +03:00
|
|
|
#include <errno.h>
|
2018-05-02 06:20:06 +03:00
|
|
|
|
2018-12-10 04:09:27 +03:00
|
|
|
DEFN_SYSCALL1(chdir, SYS_CHDIR, char *);
|
2018-05-02 06:20:06 +03:00
|
|
|
|
|
|
|
int chdir(const char *path) {
|
2018-07-18 04:45:42 +03:00
|
|
|
__sets_errno(syscall_chdir((char*)path));
|
2018-05-02 06:20:06 +03:00
|
|
|
}
|
|
|
|
|