summaryrefslogtreecommitdiff
path: root/lib9/getwd-posix.c
blob: 8554a47e442b4b1f80bbe963258a91d8ee295853 (plain)
1
2
3
4
5
6
7
8
9
#include "lib9.h"
#undef getwd
#include <unistd.h>

char *
infgetwd(char *buf, int size)
{
	return getcwd(buf, size);
}