summaryrefslogtreecommitdiff
path: root/utils/srclist/Posix.c
blob: ea5c842aa7bf099cf6e0197ed0ef02d5b2ffb84a (plain)
1
2
3
4
5
6
7
8
9
10
#include	"lib9.h"
#undef getwd
#undef getwd
#include	<unistd.h>

char*
mygetwd(char *path, int len)
{
	return getcwd(path, len);
}