Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
2df9ae916120212442201bbf30271a1170e508cf
/
.
/
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
);
}