libc/libgloss/riscv/sys_chdir.c

9 lines
89 B
C

#include <machine/syscall.h>
/* Stub. */
int
_chdir(const char *path)
{
return -1;
}