Sign in
mojo
/
mojo-tools
/
9beb4f7377e271d83038be0bdaf53154ed6bc607
/
.
/
fusl
/
src
/
unistd
/
chdir.c
blob: ba11836ed0a9a2bef6522cc68bccd8a518c446b4 [
file
]
#include
<unistd.h>
#include
"syscall.h"
int
chdir
(
const
char
*
path
)
{
return
syscall
(
SYS_chdir
,
path
);
}