summaryrefslogtreecommitdiff
path: root/userland/libc/unistd/chdir.c
blob: 90b30ae110e25e30e719af65a6dc7172e8aeaef3 (plain)
1
2
3
4
#include <unistd.h>
#include <syscall.h>

int chdir(const char *path) { RC_ERRNO(syscall(SYS_CHDIR, path, 0, 0, 0, 0)); }