git: purgatorio

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