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