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