RISCOS files by dschwertberger

This commit is contained in:
Guido van Rossum 2001-03-02 05:58:11 +00:00
parent c92cdf7aa7
commit 228d80736c
16 changed files with 3089 additions and 0 deletions

View file

@ -0,0 +1,5 @@
char *getcwd(char *buf, int size)
{
buf[0] = '\0';
return buf;
}