Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 6a336f6484a13c01516b6bfc3b767075cc2cb4f7 authored by Benjamin Peterson on 03 July 2010, 13:57:30 UTC
move sections
Tip revision: 6a336f6
getcwd_riscos.c
char *getcwd(char *buf, int size)
{
  buf[0] = '\0';
  return buf;
}
back to top