Staging
v0.8.1
Revision f126fa59f608f5010ca78dbffd6814820b0aaca1 authored by Zachary Ware on 10 October 2014, 21:03:14 UTC, committed by Zachary Ware on 10 October 2014, 21:03:14 UTC
In particular, correctly describe the behavior of ntpath.join.

Based on a patch by Dave Sawyer.
1 parent f85a856
Raw File
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top