tauthon2.7/RISCOS/Python/getcwd_riscos.c
2025-08-15 16:28:06 +02:00

6 lines
69 B
C

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