mirror of
https://github.com/diegocr/libnix.git
synced 2025-12-08 14:58:32 +00:00
8 lines
104 B
C
8 lines
104 B
C
#include <unistd.h>
|
|
#include <sys/param.h>
|
|
|
|
char *getwd(char *buf)
|
|
{
|
|
return getcwd(buf,MAXPATHLEN);
|
|
}
|