shithub: purgatorio

ref: 71292834bbafcf6bc409cfd7691f9e6650df025b
dir: purgatorio/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);
}