allwinner_a64/android/external/python/cpython2/RISCOS/Python/getcwd_riscos.c
2018-08-08 16:14:42 +08:00

5 lines
69 B
C

char *getcwd(char *buf, int size)
{
buf[0] = '\0';
return buf;
}