Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6af16190f6657fc482d84b4c4e3bdfc2c63d8a42 authored by Barry Warsaw on 18 September 2008, 04:33:43 UTC
Bumping to 2.6rc2
Tip revision: 6af1619
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top