shithub: purgatorio

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