summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/chdir.c
blob: 502b4c07fd641f825493ebb51689a3a67a1aa50a (plain)
1
2
3
4
5
6
7
8
9



#include <syscall.h> // for __syscall_1, syscall

int chdir(const char *path)
{
	return syscall(chdir, path);
}