summaryrefslogtreecommitdiff
path: root/src/unistd/fchdir.c
blob: e5595f7749f35f0d959da1fc186e6361e648e90d (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int fchdir(int fd)
{
	return syscall(SYS_fchdir, fd);
}