Staging
v0.5.1
Raw File
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top