diff options
Diffstat (limited to 'RISCOS/Python/getcwd_riscos.c')
-rw-r--r-- | RISCOS/Python/getcwd_riscos.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/RISCOS/Python/getcwd_riscos.c b/RISCOS/Python/getcwd_riscos.c new file mode 100644 index 0000000..0239e6e --- /dev/null +++ b/RISCOS/Python/getcwd_riscos.c @@ -0,0 +1,5 @@ +char *getcwd(char *buf, int size) +{ + buf[0] = '\0'; + return buf; +} |