aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/chdir.h
blob: 497698f20453b75afdda52da327f193620febeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CHDIR_H
#define CHDIR_H

#include "syscalls.h"

static int chdir(const char *filename)
{
	return syscall(CHDIR, filename);
}

#endif