Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC
Bump copyright years.
Tip revision: 9bf51fe
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top