code: 9ferno

ref: c6c1b7307d94a9f49610de276739cb35cf76772c
dir: /lib9/getwd-posix.c/

View raw version
#include "lib9.h"
#undef getwd
#include <unistd.h>

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