1 2 3 4 5 6
#include <fs/vfs.h> #include <scalls/chdir.h> int syscall_chdir(const char *path) { return vfs_chdir(path); }