shithub: purgatorio

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