blob: ba11836ed0a9a2bef6522cc68bccd8a518c446b4 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int chdir(const char* path) {
return syscall(SYS_chdir, path);
}