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