aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/chdir.c
blob: 893d44e4b402a0591baa119f6ecbfd8425e9d692 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif