Files
pico/osdep/getcwd
T
2023-03-18 20:26:52 +02:00

18 lines
179 B
Plaintext

/*
* getcwd
*/
char *
getcwd(pth, len)
char *pth;
size_t len;
{
extern char *getwd();
if(!pth)
pth = (char *)malloc(len+1);
return(getwd(pth));
}