shithub: purgatorio

ref: efd1615c5741a6898853fefc24b1cbcb734e5477
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);
}