xref: /inferno-os/utils/srclist/Posix.c (revision 556f8a312ed1b20f8ff25c104928646828e8b05c)
1 #include	"lib9.h"
2 #undef getwd
3 #undef getwd
4 #include	<unistd.h>
5 
6 char*
7 mygetwd(char *path, int len)
8 {
9 	return getcwd(path, len);
10 }
11