Sign in
mojo
/
mojo-tools
/
a02505467f01880befaf0b32a25b97975b47a726
/
.
/
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
);
}