xref: /inferno-os/utils/srclist/Posix.c (revision 4eb166cf184c1f102fb79e31b1465ea3e2021c39)
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