#include #include /* Change the process' file system current working directory */ int chdir(const char *path) { int ret; asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_CHDIR), "c" (1), "S" (&path)); if (ret >= 0) return ret; errno = -ret; return -1; }