Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: ee933eccc98a62d1b9a4087a7fdea9a97e46fa10 authored by Benjamin Peterson on 15 March 2012, 17:25:54 UTC
bump to 2.7.3rc2
Tip revision: ee933ec
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top