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