xref: /inferno-os/lib9/getwd-posix.c (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1 #include "lib9.h"
2 #undef getwd
3 #include <unistd.h>
4 
5 char *
infgetwd(char * buf,int size)6 infgetwd(char *buf, int size)
7 {
8 	return getcwd(buf, size);
9 }
10