amiga-libnix3/extra/getwd.c

8 lines
104 B
C

#include <unistd.h>
#include <sys/param.h>
char *getwd(char *buf)
{
return getcwd(buf,MAXPATHLEN);
}