#include #include "syscall.h" int chdir(const char *path) { return syscall(SYS_chdir, path); } #ifdef TEST int main(void) { return 0; } #endif