Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: fdbdcfe020f8b55a1893d1185d7a250bce12625e authored by Benjamin Peterson on 30 June 2014, 01:58:16 UTC
bump to 2.7.8
Tip revision: fdbdcfe
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top